anonymous wrote : 
  | Seam instantiates (javabean) components with a no-arg constructor, so this 
won't help, unless you yourself instantiate an entityHome using "new", which 
you shouldn't ever be doing.
  | 
Of course. But I didn't think it in that way ... You mainly use EntityHome with 
inheritance so instead of :

  | class PersonHome extends EntityHome< Person > {
  | ...
  | }
  | 

have 


  | class PersonHome extends EntityHome< Person > {
  |    public PersonHome() {
  |       super( Person.class );
  |    }
  | ...
  | }
  | 

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4088513#4088513

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4088513
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to