Re: [Xdoclet-user] Xdoclet and struts and validator

2003-10-06 Thread Erik Hatcher
Well technically speaking it wasn't an XDoclet "problem" though. Don't blame XDoclet for a mistake in your generated configuration file :) One of the first rules when doing code generation is to fully understand the underlying technology/configuration before adding generation to the mix. Ha

[Xdoclet-user] exclude ejb from generation

2003-10-06 Thread Johnathan Conley
Would like an EJB to be excluded from generation (actually it's an abstract class that 2 other EJB's extend for common behavior) Currently hacked it into the fileset - but in the spirit of xdoclet would like to denote this in the code. I could swear I saw this today sometime browsing docs/internet,

Re: [Xdoclet-user] Stateful Bean with DAO.

2003-10-06 Thread Vishal
I'm wondering if my query is not feasible as what i'm trying to achieve using Xdoclet. Any help will be higly appreciable. Vishal. On Sat, 2003-10-04 at 18:55, Sharma. Vishal wrote: Hi, I have an intriguing quetsion for every one. I have got a stateful bean which has one attribute and two

Re: [Xdoclet-user] comments on websphere module?

2003-10-06 Thread Andrew Stevens
On Mon, 2003-10-06 at 06:03, Johnathan Conley wrote: > We are porting from WLS8.1 to WAS5.0 > XDoclet looks promising, but already found several > missing documented features for the weblogic module - > but I now have everything working. I added documentation for a number of missing tags in the we

Re: [Xdoclet-user] xdoclet speed

2003-10-06 Thread Andrew Stevens
On Mon, 2003-10-06 at 05:12, Johnathan Conley wrote: > Am having some performance concerns with XDoclet. Am > currently testing on appx 120 ejb's and each pass > takes a considerable amount of time (1.5 minutes) - > even if I remove all tasks except > , it takes about 1min 9sec - so > it seems the

Re: [Xdoclet-user] Xdoclet and struts and validator

2003-10-06 Thread Edward Kenworthy
Hi Mark Xdoclet generates the struts-config.xml. However it can't generate the entire file, so for those elements that xdoclet doesn't create you have to create one or more merge files. struts-plugins.xml is the merge file you create to get struts plugins setup; xdoclet will merge this into the st

RE: [Xdoclet-user] Xdoclet and struts and validator

2003-10-06 Thread Mark Lybarger
I'm a little new to all this; how is struts-plugins.xml related to xdoclet? does xdoclet generate this file? > -Original Message- > From: Edward Kenworthy [mailto:[EMAIL PROTECTED] > Sent: Monday, October 06, 2003 2:17 PM > To: [EMAIL PROTECTED] > Subject: Re: [Xdoclet-user] Xdoclet and st

Re: [Xdoclet-user] Xdoclet and struts and validator

2003-10-06 Thread Edward Kenworthy
Got the answer from javaranch, and despite Erik's assertion it was something to do with xdoclet I had to change, I had to add another merge file, struts-plugins.xml (which is of course xdoclet specific) with the following in it (which is struts specific): Edward On 5/10/03 8:53 am, "Edwar

[Xdoclet-user] entity bean inheritance, finders, and ejbdoclet question

2003-10-06 Thread Bruce Bohannan
Question about how to build an entity ejb hierarchy along side ejbdoclet: If I have a hierarchy of entity ejbs with @ejb-finder ejbdoclet tags: BaseBean @ejb-finder    signature="void findSomeBase()"    query="some query" DerivedBean extends BaseBean @ejb-finder    signature="void f

Re: [Xdoclet-user] Xdoclet and struts and validator

2003-10-06 Thread Edward Kenworthy
Thanks Erik, really helpful. On 5/10/03 10:00 pm, "Erik Hatcher" <[EMAIL PROTECTED]> wrote: > Your questions actually have nothing to do with XDoclet whatsoever. > First you need to understand Struts and how it works with the various > config files and trouble-shoot what is wrong with them (regar