[Xdoclet-user] why the subclass of EJB must be abstract when using xdoclet

2002-11-07 Thread wu qihua
why should we add abstract keyword. In my impression ,we needn't to add this keyword when develop EJB without xdoclet. public abstract class MyCmpBean implements EntityBean _ Add photos to your messages with MSN 8. Get

RE: [Xdoclet-user] xdoclet tags for ormapping (hibernate/castor/jdo/etc.)

2002-11-07 Thread Ara Abrahamian
are the tags tied to the getXXX() methods of a class? this was one thing that i changed with the new castor version that i was working on. since ormapping deals with classes(tables) and attributes(dbFields), i associated the @tags with class attributes instead of getXXX() methods. just

[Xdoclet-user] Anyone interested in writing a version of PetStore with xDoclet?

2002-11-07 Thread Herve Tchepannou
Title: Anyone interested in writing a version of PetStore with xDoclet? I've rewritten a subset (and lightweight) of Petstore application using xDoclet (I named it xPetStore) The goal of this exercice is to show how to use attribute orriented programming to: - simplify the code complexity

Re: [Xdoclet-user] Anyone interested in writing a version of PetStore with xDoclet?

2002-11-07 Thread Konstantin Priblouda
Also, has anyone used xdoclet to teach ejbs? Kind of. I had to lead team of 4 developers who received short training in java. ( and no formal CS education at all) - I was able to get them to write EJBs I may be overreaching here, but I was going to give a few general lectures on ejb, and

RE: [Xdoclet-user] can any one give me an example about how to write cmp with xdoclet

2002-11-07 Thread Rick Hightower
Here are some examples of XDoclet and CMP. http://www.rickhightower.com/ejbcmpcmrtut.html (Code here works with JBoss and WebLogic look at links towards bottom of page) http://java-tools.eblox.com/index.php?ResinCMPCMRXDocletTutorial (Code here works with Resin EE. There are step by step

RE: [Xdoclet-user] Anyone interested in writing a version of PetStore with xDoclet?

2002-11-07 Thread Herve Tchepannou
xpetstore-small.zip Description: Binary data

[Xdoclet-user] Re: idea plugin

2002-11-07 Thread Dmitri Colebatch
Andreas, Ok, haven't had a chance to 'fix' anything, but I did download 673 and do a clean build and install of xdoclet on that, and I didn't get any exceptions - I also couldn't add anything to the classpath, so will have to look into that tonight. stay tuned. cheers dim - Original

[Xdoclet-user] [ejbdoclet] 15:06:00,192 ERROR [findGetterMethod] Method getVerbose not found.

2002-11-07 Thread Guoliang Cao
One of our developers got problem with XDoclet. We can not figure out the reason. We tried to make the environment exactly the same. We have Ant 1.5.1 and JDK 1.4.1_01 (those are the only things required to compile/deploy our source I believe) (JAVA_HOME is set correctly). We all get a fresh copy

Re: [Xdoclet-user] [ejbdoclet] 15:06:00,192 ERROR [findGetterMethod] Method getVerbose not found.

2002-11-07 Thread Guoliang Cao
After spending a whole day on this, we found he has a environment variable classpath=...(I suppose it is not used anyway, but I'm sadly wrong). We tried to unset that one and then everything immediately works perfectly. Cheers, Cao GC One of our developers got problem with XDoclet. We can not

Re: [Xdoclet-user] Anyone interested in writing a version of PetStore with xD

2002-11-07 Thread Andrew Stevens
A wise old hermit known only as Konstantin Priblouda [EMAIL PROTECTED] once said: Also, has anyone used xdoclet to teach ejbs? Kind of. I had to lead team of 4 developers who received short training in java. ( and no formal CS education at all) - I was able to get them to write EJBs

Re: [Xdoclet-user] why the subclass of EJB must be abstract when using xdoclet

2002-11-07 Thread Andrew Stevens
A wise old hermit known only as wu qihua [EMAIL PROTECTED] once said: why should we add abstract keyword. In my impression ,we needn't to add this keyword when develop EJB without xdoclet. public abstract class MyCmpBean implements EntityBean Because although you declare that