Entity Class:

  | package ejbframe.entity;
  | 
  | import javax.persistence.*;
  | 
  | @Entity
  | @IdClass(UserPK.class)
  | @Table(name = "users")
  | public class User {
  | 
  |     private int userId;
  |     private String name;
  |     private String password;
  | 
  |     @Id @GeneratedValue(strategy = GenerationType.TABLE)
  |     public int getUserId() {
  |             return userId;
  |     }
  |     public void setUserId(int userId) {
  |             this.userId = userId;
  |     }        
  | 
  |     public String getName() {
  |             return name;
  |     }
  |     public void setName(String name) {
  |             this.name = name;
  |     }
  |     
  |     public String getPassword() {
  |             return password;
  |     }
  |     public void setPassword(String password) {
  |             this.password = password;
  |     }
  | }
  | 

PK class:


  | package ejbframe.entity;
  | 
  | import java.io.Serializable;
  | 
  | public class UserPK implements Serializable {
  | 
  |     private int userId;
  | 
  |     public UserPK ()  {}
  |     
  |     
  |     public int getUserId() {
  |             return userId;
  |     }
  | 
  |     public void setUserId(int userId) {
  |             this.userId = userId;
  |     }
  | }
  | 

no ids are generated, no tables for id generation created.
If i comment out the @IdClass it works perfectly.
help please :(

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

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


-------------------------------------------------------
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
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to