[EMAIL PROTECTED] penned

> I am trying to have my entity bean extend a baseEntityBean I have
> created. But when I use extends, there is nothing generated via
> xdoclet. What am I missing? 

Are you including your base entity bean in <ejbdoclet>'s <fileset>? If
so, then can you post the tags you're using so we might have a chance to
help? I do have this working here. Also, you'll want to mark the base
entity bean to not have interfaces and util objects generated for it.
Here's what I use:

    /**
     * @ejb.bean
     *      generate="False"
     *      view-type="local"
     *      type="CMP"
     *      cmp-version="2.x"
     *
     * @ejb.interface
     *      generate="false"
     *
     * @ejb.home
     *      generate="false"
     *
     * @ejb.transaction
     *      type="Supports"
     *
     * @weblogic.transaction-isolation TRANSACTION_READ_COMMITTED
     *
     * @weblogic.delay-database-insert-until ejbPostCreate
     *
     * @weblogic.persistence
     *      finders-load-bean="False"
     *      verify-columns="Version"
     *      optimistic-column="version_num"
     *
     * @weblogic.cache
     *      concurrency-strategy="Optimistic"
     *      cache-between-transactions="True"
     */
    public abstract class BaseEntityEJB implements EntityBean

Good luck!

-- 
David Harkness                               Sony Pictures Digital
Sr. Software Engineer   310.482.4756    [EMAIL PROTECTED]

        Those who judge the value of advice by its source
        will at once dismiss the best and follow the worst.


-------------------------------------------------------
This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170
Project Admins to receive an Apple iPod Mini FREE for your judgement on
who ports your project to Linux PPC the best. Sponsored by IBM.
Deadline: Sept. 24. Go here: http://sf.net/ppc_contest.php
_______________________________________________
xdoclet-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-user

Reply via email to