> 1. The <utilobject/> task is creating util classes for beans that I > haven't > specified. For example, I have a session bean that I've created, which > does > not specify: > > @ejb.util > > and a util object is still being created for it. > > 2. I have a CMP bean that specifies: > > @ejb.value-object > > and no value object is created for it.
By default VO/utilobj are created for all beans if you put a <valueobject/>/<utilobject/> in the build file. To exclude a bean put a @ejb.value-object generate="false". > 3. The util object that is created by default includes methods for > accessing > remote homes. If I specify that a bean is only local, the remote methods > are > still placed in the util object causing compiler errors. Do I need to > modify > my template to not include the remote methods? I haven't seen such a behavior. Ara. ------------------------------------------------------- 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
