我正在尝试使用@EmbeddedId,这是我的代码如下,
create table TBL_EMPLOYEE_002(
ID integer generated always as identity (start with 100,increment by 10),
COUNTRY varchar(50),
NAME varchar(50),
constraint PK_EMP_00240 primary key(ID,COUNTRY)
)
Embedded类如下,
@Embeddable
public class EmployeeIdTwo implements Serializable{
public EmployeeIdTwo(){}
public EmployeeIdTwo(String country){
this.empCountry = country;
}
@GeneratedValue(strategy=GenerationType.IDENTITY)
@Column(name="ID")
private Integer employeeId;
@Column(name="COUNTRY",length=50)
private String empCountry;
// implementation of hashCode and equals and only getters
...
}
员工实体如下,
@Entity
@Table(name="TBL_EMPLOYEE_002")
public class EmployeeEntitySix implements Serializable{
public EmployeeEntitySix(){}
public EmployeeEntitySix(EmployeeIdTwo id,String name){
this.id = id;
this.employeeName = name;
}
@EmbeddedId
private EmployeeIdTwo id;
@Column(name="NAME")
private String employeeName;
// getters and setters
}
这是用main方法编写的代码,
private static void storVal(EntityManager em){
EmployeeEntitySix employee = new EmployeeEntitySix(new EmployeeIdTwo("KENYA"), "Henry Olaanga");
em.persist(employee);
}
但是一旦我运行上面的代码,我得到如下例外,
Caused by: javax.persistence.PersistenceException: org.hibernate.exception.SQLGrammarException: Attempt to modify an identity column 'ID'.
你能告诉我哪里出错了吗?
如果我的EmbeddedId类包含自动生成的列,那么该方法应该是什么。
只是要知道我使用hibernate作为持久性提供程序而JPA作为持久性API
答案 0 :(得分:0)
我假设如果Id
能够轻松唯一地识别员工,您就不会问这个问题。如果您能够修改表格,我建议您将Id
置于唯一状态,或者添加自动生成的UniqueId
列。
其中一些错误实际上来自数据库架构,而不是来自JPA / Hibernate。如果您尝试更新数据库没有生成策略的列,则可能是导致错误的原因。
您可能还会看一下autoincrement id is not reflecting in composite key using JPA,因为我认为这涵盖了您的要求。