javahibernate는 주석을 사용하여 결합 키를 정의합니다
다음은 Hibernate의 API에서 설명한 세 가지 방식으로 메인 키를 정의합니다. 주로 Annotation을 사용하여 Hibernate의 연합 메인 키를 정의합니다.
다음은 hibernate의 API 문서입니다.
조합 키의 구문을 정의합니다.
1. 구성 요소 클래스를 @Embeddable로 메모하고 구성 요소의 속성을 @Id로 메모합니다.
2. 구성 요소의 속성을 @EmbeddedId로 메모
3. 클래스 메모를 @IdClass로 하고 해당 엔티티에 속한 모든 키 속성을 @Id로 메모합니다.
다음은 이 세 가지 방식으로 연합 키를 정의합니다.
테이블의 SQL 구문:
CREATE TABLE `syslogs` (
`id` varchar(50) NOT NULL,
`yhid` varchar(50) NOT NULL,
`modelname` varchar(100) DEFAULT NULL,
`content` varchar(500) DEFAULT NULL,
`inserttime` varchar(20) DEFAULT NULL,
`remark` varchar(50) DEFAULT NULL,
PRIMARY KEY (`id`,`yhid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf-8;
1. 구성 요소 클래스를 @Embeddable로 콜아웃
/**
* SysLogsDtoId
*/
package com.hibernate.dto;
import javax.persistence.Embeddable;
/**
* 1、 java.io.Serializable
* 2、 equals hashCode
* @author ibm
*/
@Embeddable
public class SysLogsDtoId implements java.io.Serializable {
private static final long serialVersionUID = 1L;
private String id;
private String yhid;
public SysLogsDtoId() {
}
public SysLogsDtoId(String id, String yhid) {
this.id = id;
this.yhid = yhid;
}
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public String getYhid() {
return this.yhid;
}
public void setYhid(String yhid) {
this.yhid = yhid;
}
public boolean equals(Object other) {
if ((this == other))
return true;
if ((other == null))
return false;
if (!(other instanceof SysLogsDtoId))
return false;
SysLogsDtoId castOther = (SysLogsDtoId) other;
return ((this.getId() == castOther.getId()) || (this.getId() != null && castOther.getId() != null && this.getId().equals(castOther.getId())))
&& ((this.getYhid() == castOther.getYhid()) || (this.getYhid() != null && castOther.getYhid() != null && this.getYhid().equals(
castOther.getYhid())));
}
public int hashCode() {
int result = 17;
result = 37 * result + (getId() == null ? 0 : this.getId().hashCode());
result = 37 * result + (getYhid() == null ? 0 : this.getYhid().hashCode());
return result;
}
}
/**
* SysLogsDto , SysLogsDtoId
*/
package com.hibernate.dto;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
@Entity
@Table(name = "syslogs")
public class SysLogsDto implements java.io.Serializable {
private static final long serialVersionUID = 1L;
private SysLogsDtoId id;
private String modelname;
private String content;
private String inserttime;
private String remark;
public SysLogsDto() {
}
public SysLogsDto(SysLogsDtoId id) {
this.id = id;
}
public SysLogsDto(SysLogsDtoId id, String modelname, String content, String inserttime, String remark) {
this.id = id;
this.modelname = modelname;
this.content = content;
this.inserttime = inserttime;
this.remark = remark;
}
@Id
public SysLogsDtoId getId() {
return this.id;
}
public void setId(SysLogsDtoId id) {
this.id = id;
}
@Column(name = "modelname", length = 100)
public String getModelname() {
return this.modelname;
}
public void setModelname(String modelname) {
this.modelname = modelname;
}
@Column(name = "content", length = 500)
public String getContent() {
return this.content;
}
public void setContent(String content) {
this.content = content;
}
@Column(name = "inserttime", length = 20)
public String getInserttime() {
return this.inserttime;
}
public void setInserttime(String inserttime) {
this.inserttime = inserttime;
}
@Column(name = "remark", length = 50)
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
}
둘째, 구성 요소의 속성을 @EmbeddedId로 메모합니다.이런 상황은 가장 간단하다. 키 종류는 키 필드만 정의할 뿐 주석을 쓸 필요가 없다.그리고 대상 클래스에 키 클래스의 get 방법에 @EmbeddedId 주석을 추가합니다.
/**
* SysLogsDtoId
*/
package com.hibernate.dto;
public class SysLogsDtoId implements java.io.Serializable {
private static final long serialVersionUID = 1L;
private String id;
private String yhid;
public SysLogsDtoId() {
}
public SysLogsDtoId(String id, String yhid) {
this.id = id;
this.yhid = yhid;
}
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public String getYhid() {
return this.yhid;
}
public void setYhid(String yhid) {
this.yhid = yhid;
}
public boolean equals(Object other) {
if ((this == other))
return true;
if ((other == null))
return false;
if (!(other instanceof SysLogsDtoId))
return false;
SysLogsDtoId castOther = (SysLogsDtoId) other;
return ((this.getId() == castOther.getId()) || (this.getId() != null && castOther.getId() != null && this.getId().equals(castOther.getId())))
&& ((this.getYhid() == castOther.getYhid()) || (this.getYhid() != null && castOther.getYhid() != null && this.getYhid().equals(
castOther.getYhid())));
}
public int hashCode() {
int result = 17;
result = 37 * result + (getId() == null ? 0 : this.getId().hashCode());
result = 37 * result + (getYhid() == null ? 0 : this.getYhid().hashCode());
return result;
}
}
/**
* SysLogsDto , SysLogsDtoId
*/
package com.hibernate.dto;
import javax.persistence.Column;
import javax.persistence.EmbeddedId;
import javax.persistence.Entity;
import javax.persistence.Table;
@Entity
@Table(name = "syslogs")
public class SysLogsDto implements java.io.Serializable {
private static final long serialVersionUID = 1L;
private SysLogsDtoId id;
private String modelname;
private String content;
private String inserttime;
private String remark;
public SysLogsDto() {
}
public SysLogsDto(SysLogsDtoId id) {
this.id = id;
}
public SysLogsDto(SysLogsDtoId id, String modelname, String content, String inserttime, String remark) {
this.id = id;
this.modelname = modelname;
this.content = content;
this.inserttime = inserttime;
this.remark = remark;
}
@EmbeddedId
public SysLogsDtoId getId() {
return this.id;
}
public void setId(SysLogsDtoId id) {
this.id = id;
}
@Column(name = "modelname", length = 100)
public String getModelname() {
return this.modelname;
}
public void setModelname(String modelname) {
this.modelname = modelname;
}
@Column(name = "content", length = 500)
public String getContent() {
return this.content;
}
public void setContent(String content) {
this.content = content;
}
@Column(name = "inserttime", length = 20)
public String getInserttime() {
return this.inserttime;
}
public void setInserttime(String inserttime) {
this.inserttime = inserttime;
}
@Column(name = "remark", length = 50)
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
}
3. 클래스를 @IdClass로 주석하고 이 실체의 모든 키에 속하는 속성을 @Id로 주석합니다
/**
* SysLogsDtoId
*/
package com.hibernate.dto;
public class SysLogsDtoId implements java.io.Serializable {
private static final long serialVersionUID = 1L;
private String id;
private String yhid;
public SysLogsDtoId() {
}
public SysLogsDtoId(String id, String yhid) {
this.id = id;
this.yhid = yhid;
}
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public String getYhid() {
return this.yhid;
}
public void setYhid(String yhid) {
this.yhid = yhid;
}
public boolean equals(Object other) {
if ((this == other))
return true;
if ((other == null))
return false;
if (!(other instanceof SysLogsDtoId))
return false;
SysLogsDtoId castOther = (SysLogsDtoId) other;
return ((this.getId() == castOther.getId()) || (this.getId() != null && castOther.getId() != null && this.getId().equals(castOther.getId())))
&& ((this.getYhid() == castOther.getYhid()) || (this.getYhid() != null && castOther.getYhid() != null && this.getYhid().equals(
castOther.getYhid())));
}
public int hashCode() {
int result = 17;
result = 37 * result + (getId() == null ? 0 : this.getId().hashCode());
result = 37 * result + (getYhid() == null ? 0 : this.getYhid().hashCode());
return result;
}
}
/**
* SysLogsDto , SysLogsDtoId
*/
package com.hibernate.dto;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.IdClass;
import javax.persistence.Table;
@Entity
@Table(name = "syslogs")
@IdClass(value=SysLogsDtoId.class)
public class SysLogsDto implements java.io.Serializable {
private static final long serialVersionUID = 1L;
private String id;
private String yhid;
private String modelname;
private String content;
private String inserttime;
private String remark;
public SysLogsDto() {
}
@Id
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
@Id
public String getYhid() {
return yhid;
}
public void setYhid(String yhid) {
this.yhid = yhid;
}
@Column(name = "modelname", length = 100)
public String getModelname() {
return this.modelname;
}
public void setModelname(String modelname) {
this.modelname = modelname;
}
@Column(name = "content", length = 500)
public String getContent() {
return this.content;
}
public void setContent(String content) {
this.content = content;
}
@Column(name = "inserttime", length = 20)
public String getInserttime() {
return this.inserttime;
}
public void setInserttime(String inserttime) {
this.inserttime = inserttime;
}
@Column(name = "remark", length = 50)
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
}
읽어주셔서 감사합니다. 여러분에게 도움이 되었으면 좋겠습니다. 본 사이트에 대한 지지에 감사드립니다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
38. Java의 Leetcode 솔루션텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.