gpt4 book ai didi

hibernate - org.hibernate.AnnotationException : Unknown mappedBy in: error

转载 作者:行者123 更新时间:2023-12-02 14:42:21 26 4
gpt4 key购买 nike

我正在尝试使用注释进行一对一关系。
这是代码。

package test.hibernate;

@Entity
@Table(name="EMPLOYEE")

public class Employee {
@Id
@GeneratedValue
@Column(name="EMP_ID")
private Long empID;

@Column(name="fName")
private String fName;

@Column(name="lName")
private String lName;

@OneToOne(mappedBy="employee", cascade=CascadeType.ALL)
private Address address;


public Employee(/* Long empID, */String fName, String lName) {
super();
// this.empID = empID;
this.fName = fName;
this.lName = lName;
}

public Employee() {
super();
}

public Long getEmpID() {
return empID;
}

public void setEmpID(Long empID) {
this.empID = empID;
}

public String getfName() {
return fName;
}

public void setfName(String fName) {
this.fName = fName;
}

public String getlName() {
return lName;
}

public void setlName(String lName) {
this.lName = lName;
}

public Address getAddress() {
return address;
}

public void setAddress(Address address) {
this.address = address;
}
}


package test.hibernate;

@NamedNativeQueries({ @NamedNativeQuery(name = "addressQuery", query = "from Address", resultClass = Address.class) })

public class Address {

@Column(name = "EMP_ID")
@GenericGenerator(name = "gen", strategy = "foreign", parameters = @Parameter(name = "property", value = "employee"))
private Long empID;

@Column(name = "ADDRESS")
private String address;

@Column(name = "CITY")
private String city;

@OneToOne
@PrimaryKeyJoinColumn
private Employee employee;

public Address() {
super();
// TODO Auto-generated constructor stub
}

public Address(/* Long empID, */String address, String city) {
super();
// this.empID = empID;
this.address = address;
this.city = city;
}

public Long getEmpID() {
return empID;
}

public void setEmpID(Long empID) {
this.empID = empID;
}

public String getAddress() {
return address;
}

public void setAddress(String address) {
this.address = address;
}

public String getCity() {
return city;
}

public void setCity(String city) {
this.city = city;
}

public Employee getEmployee() {
return employee;
}

public void setEmployee(Employee employee) {
this.employee = employee;
}


}

}

我遇到以下异常:

Hibernate one to many (XML Mapping)
log4j:WARN No appenders could be found for logger (org.hibernate.cfg.annotations.Version).
log4j:WARN Please initialize the log4j system properly.
org.hibernate.AnnotationException: Unknown mappedBy in: test.hibernate.Employee.address, referenced property unknown: test.hibernate.Address.employee
at org.hibernate.cfg.OneToOneSecondPass.doSecondPass(OneToOneSecondPass.java:129)
at org.hibernate.cfg.Configuration.secondPassCompile(Configuration.java:1127)
at org.hibernate.cfg.AnnotationConfiguration.secondPassCompile(AnnotationConfiguration.java:296)
at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1283)
at test.hibernate.HibernateUtil.openSession(HibernateUtil.java:14)
at test.hibernate.Test.main(Test.java:11)
Exception in thread "main" java.lang.NullPointerException
at test.hibernate.HibernateUtil.openSession(HibernateUtil.java:19)
at test.hibernate.Test.main(Test.java:11)

我的代码有什么问题吗?有人可以帮忙吗?

最佳答案

问题不在于 mappedBy 本身的值。问题是没有@Entity Address 类中的注释。添加它就可以解决问题。在 Java SE 环境中,类还应该添加到 persistence.xml 中。

关于hibernate - org.hibernate.AnnotationException : Unknown mappedBy in: error,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18418768/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com