Hello,
 
I'm trying to use the latest version of xdoclet from the CVS repository, because the previous release (1.1.2) was producing buggy descriptors (empty <dependent-value-classes> tag) for JBoss 3.0
 
Now the current version from CVS forgets to put the values for some attributes. See below.
 
Thanks,
Ludovic
 
Bean class:
 
/**
 * A publication list.
 *
 * @author Ludovic Claude
 * @created March 22, 2002
 * @ejb:bean name="publication/PublicationList" type="CMP"
 *      jndi-name="ejb/publication/PublicationList" view-type="local"
 *      use-soft-locking="false" cmp-version="2.x"
 * @ejb:finder signature="Collection findAll()"
 *      role-name="PublicationCoordinator" transaction-type="NotSupported"
 * @ejb:permission role-name="PublicationCoordinator"
 * @ejb:transaction type="Required"
 * @ejb:data-object name="PublicationListData" match="*"
 * @jboss:table-name "pub_list"
 * @jboss:create-table "false"
 * @jboss:remove-table "false"
 * @jboss:tuned-updates "true"
 * @jboss:read-only "false"
 * @weblogic:table-name PUB_LIST
 * @weblogic:data-source-name ib.database
 * @version 1.0
 */
 
public abstract class PublicationListEJB implements EntityBean {
...
}
Generated jbosscmp-jdbc.xml:
...
      <entity>
         <ejb-name>publication/PublicationList</ejb-name>
         <create-table></create-table>
         <remove-table></remove-table>
         <read-only></read-only>
         <table-name></table-name>
...

Reply via email to