英文:
How to create a mapping to a SQL table that has no primary key?
问题
我有一张表,其中没有主键。它需要一个@ID
注解,如果没有这个注解,就会抛出以下错误:
Caused by: org.hibernate.AnnotationException: No identifier specified for entity:
overall.model.Overall
at org.hibernate.cfg.InheritanceState.determineDefaultAccessType(InheritanceState.java:266) ~[hibernate-core-5.4.17.Final.jar:5.4.17.Final]
at org.hibernate.cfg.InheritanceState.getElementsToProcess(InheritanceState.java:211) ~[hibernate-core-5.4.17.Final.jar:5.4.17.Final]
at org.hibernate.cfg.AnnotationBinder.bindClass(AnnotationBinder.java:781) ~[hibernate-core-5.4.17.Final.jar:5.4.17.Final]
我尝试过在JDBC模板中实现,也尝试过使用JPA
,但我无法创建没有@ID
注解的任何实体。
该表的所有字段都是字符串类型。您能否就如何配置无主键的表提供建议?
我正在使用spring-boot
。
英文:
I have a table where there isn't a primary key. It is expecting an @ID
annotation and without it, the following error is being thrown:
Caused by: org.hibernate.AnnotationException: No identifier specified for entity:
overall.model.Overall
at org.hibernate.cfg.InheritanceState.determineDefaultAccessType(InheritanceState.java:266) ~[hibernate-core-5.4.17.Final.jar:5.4.17.Final]
at org.hibernate.cfg.InheritanceState.getElementsToProcess(InheritanceState.java:211) ~[hibernate-core-5.4.17.Final.jar:5.4.17.Final]
at org.hibernate.cfg.AnnotationBinder.bindClass(AnnotationBinder.java:781) ~[hibernate-core-5.4.17.Final.jar:5.4.17.Final]
I have tried implementing both in JDBC template as well as using JPA
but I'm not able to create any entity without @ID
annotation.
The table has all fields of type String. Could you please give a suggestion on how to configure a table to not have a primary key?
I am using a spring-boot
.
答案1
得分: 0
由于该表没有任何主键,可以使用以下解决方法:创建一个虚拟复合主键,由所有列组成。我希望它们不会太多。例如:
@Entity
@IdClass(UserNRole.InnerIdClass.class)
@Table(name = "users_n_roles")
public class UserNRole {
@Id
@Column(name = "user_id")
private Integer userId;
@Id
@Column(name = "role_id")
private Integer roleId;
// getters, setters and constructor . . .
public static class InnerIdClass implements Serializable {
private Integer userId;
private Integer roleId;
}
}
英文:
Since the table has no primary key at all, use this workaround: create a fake composite primary key, consisting of all the columns. I hope there aren't too many of them. For example:
@Entity
@IdClass(UserNRole.InnerIdClass.class)
@Table(name = "users_n_roles")
public class UserNRole {
@Id
@Column(name = "user_id")
private Integer userId;
@Id
@Column(name = "role_id")
private Integer roleId;
// getters, setters and constructor . . .
public static class InnerIdClass implements Serializable {
private Integer userId;
private Integer roleId;
}
}
专注分享java语言的经验与见解,让所有开发者获益!
评论