I have this definition in my PersmissionBean:
* @jboss.persistence * read-only = "true" * read-time-out = "-1" * list-cache-max = "20" * table-name = "permission"
and this will be generated by xdoclet 1.2b3:
<entity>
<ejb-name>PermissionBean</ejb-name>
<read-only>true</read-only>
<read-time-out>-1</read-time-out>
<pk-constraint>true</pk-constraint>
<read-ahead>
<strategy>on-find</strategy>
<page-size>4</page-size>
<eager-load-group>*</eager-load-group>
</read-ahead>
<list-cache-max>20</list-cache-max> <cmp-field>
<field-name>permission_id</field-name>
<column-name>permission_id</column-name> </cmp-field>
<cmp-field>
<field-name>name</field-name>
<column-name>name</column-name> </cmp-field>
<cmp-field>
<field-name>description</field-name>
<column-name>description</column-name></cmp-field>
<!-- jboss 3.2 features -->
<!-- optimistic locking does not express the exclusions needed -->
</entity>we are missing:
<table-name>permission</table-name>
Best Regards, Rafal
------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ xdoclet-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/xdoclet-user
