I have following 3 entities:

  | 
  | @Entity
  | @Inheritance(strategy = InheritanceType.TABLE_PER_CLASS)
  | public class Pet implements Serializable
  | {
  |     
  |   private Long id;
  |     
  |     @Id @GeneratedValue
  |     public Long getId()
  |     {
  |         return id;
  |     }
  | 
  |     public void setId(Long a_id)
  |     {
  |         id = a_id;
  |     }
  | }
  | 
  | 
  | @Entity
  | public class Cat extends Pet
  | {
  | ...
  | }
  | 
  | @Entity
  | public class Dog extends Pet
  | {
  | 
  | }
  | 

When I deploy to jboss, it gives me error message:
Cannot use identity column key generation with <union-subclass> mapping for: 
com.xxx.Cat

Changing it to SINGLE_TABLE would solove the problem. Is TABLE_PER_CLASS 
supported by jboss?


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

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3933694


-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to