I am running version 1.2b2

The findByPrimaryKey method does not seem to be generated - I do get the create 
methods and another finder. What am I doing wrong?

Thanks,
Barry

Here is the javadoc

/**
 * Description.
 * 
 * @ejb.bean type="CMP"
 *           cmp-version="2.x"
 *           jndi-name="SeriesEJBHome"
 *           display-name="Series Entitiy Bean"
 *           reentrant="false"
 *           schema="Series"
 *           primkey-field="seriesID" 
 * 
 * @ejb.transaction type="Required"
 * 
 * @ejb.pk class="java.lang.Long"
 * 
 * @ejb.finder signature="java.util.Collection findByIssueID(int issueID)"
 *             query="SELECT OBJECT(s) FROM Series AS s WHERE s.issueID = ?1"
 * 
 * @ejb.env-entry name="dummy" 
 *                type="java.lang.String" 
 *                value="dummy-value"
 * 
 * @ejb.persistence table-name="series"
 * 
 * @ejb.value-object match=*
 * 
 * @weblogic.pool max-beans-in-free-pool=1000
 *                initial-beans-in-free-pool=10
 */

public abstract class SeriesEJBBean implements EntityBean {
    /**
     * @ejb.interface-method
     * @ejb.pk-field
     * @ejb.persistence column-name="id"
     */
    abstract public Long getSeriesID();

etc.
}


-------------------------------------------------------
This SF.NET email is sponsored by:
SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See!
http://www.vasoftware.com
_______________________________________________
xdoclet-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-user

Reply via email to