RE: Generation of entity classes

2007-01-01 Thread Patrick Linskey
PROTECTED] Sent: Sunday, December 31, 2006 9:19 PM To: open-jpa-dev@incubator.apache.org Subject: Re: Generation of entity classes Actually, never mind. Due to the interconnectedness of persistent classes (i.e., relationships), I need to generate all the classes at once and add them all

Re: Generation of entity classes

2007-01-01 Thread Dain Sundstrom
-dev@incubator.apache.org Subject: Re: Generation of entity classes Actually, never mind. Due to the interconnectedness of persistent classes (i.e., relationships), I need to generate all the classes at once and add them all to the class loader at the same time. This means my elegant solution

Generation of entity classes

2006-12-31 Thread Dain Sundstrom
I working on an implementation of the EJB cmp specification which uses JPA under the covers to implement the persistence. I have the basics working with hand written subclasses of the abstract cmp2 beans. I just wrote a code generator to replace my hand coded subclasses using ASM (which

Re: Generation of entity classes

2006-12-31 Thread Dain Sundstrom
Actually, never mind. Due to the interconnectedness of persistent classes (i.e., relationships), I need to generate all the classes at once and add them all to the class loader at the same time. This means my elegant solution is just broken :) -dain On Dec 31, 2006, at 3:12 PM, Dain