联合主键用Hibernate注解映射方式主要有三种:
第一、将联合主键的字段单独放在一个类中,该类需要实现java.io.Serializable接口并重写equals和hascode,再将该类注解为@Embeddable,最后在主类中(该类不包含联合主键类中的字段)保存该联合主键类的一个引用,并生成set和get方法,并将该引用注解为@Id
第二、将联合主键的字段单独放在一个类中,该类需要实现java.io.Serializable接口并重写equals和hascode,最后在主类中(该类不包含联合主键类中的字段)保存该联合主键类的一个引用,并生成set和get方法,并将该引用注解为@EmbeddedId
第三、将联合主键的字段单独放在一个类中,该类需要实现java.io.Serializable接口并要重写equals和hashcode.最后在主类中(该类包含联合主键类中的字段)将联合主键字段都注解为@Id,并在该类上方将上这样的注解:@IdClass(联合主键类.class)
使用方式:
1、model类:
- @Entity
- @Table(name="JLEE01")
- public class Jlee01 implements Serializable{
- private static final long serialVersionUID = 3524215936351012384L;
- private String address ;
- private int age ;
- private String email ;
- private String phone ;
- @Id
- private JleeKey01 jleeKey ;
主键类:JleeKey01.java
- @Embeddable
- public class JleeKey01 implements Serializable{
- private static final long serialVersionUID = -3304319243957837925L;
- private long id ;
- private String name ;
- /**
- * @return the id
- */
- public long getId() {
- return id;
- }
- /**
- * @param id the id to set
- */
- public void setId(long id) {
- this.id = id;
- }
- /**
- * @return the name
- */
- public String getName() {
- return name;
- }
- /**
- * @param name the name to set
- */
- public void setName(String name) {
- this.name = name;
- }
- @Override
- public boolean equals(Object o) {
- if(o instanceof JleeKey01){
- JleeKey01 key = (JleeKey01)o ;
- if(this.id == key.getId() && this.name.equals(key.getName())){
- return true ;
- }
- }
- return false ;
- }
- @Override
- public int hashCode() {
- return this.name.hashCode();
- }
- }
2、model类:
- @Entity
- @Table(name="JLEE02")
- public class Jlee02 {
- private String address ;
- private int age ;
- private String email ;
- private String phone ;
- @EmbeddedId
- private JleeKey02 jleeKey ;
主键类:JleeKey02.java
普通java类即可。
3、model类:
- @Entity
- @Table(name="JLEE03")
- @IdClass(JleeKey03.class)
- public class Jlee03 {
- @Id
- private long id ;
- @Id
- private String name ;
主键类:JleeKey03.java