我正在尝试JPA中的一对一映射, 在这里,我已经学习和联系,每个学生都有联系。
我已创建学生实体,如下所示,
@Entity
@Table(name="TBL_STUDENT")
public class Student implements Serializable{
public Student(){ }
@Id
@GeneratedValue(strategy=GenerationType.IDENTITY)
@Column(name="ID")
private Integer studentId;
@OneToOne(targetEntity=StudentContact.class,fetch=FetchType.LAZY)
@JoinColumn(name="CONTACT_ID")
private StudentContact contact;
....
....
....
}
现在StudentContact实体如下,
@Entity
@Table(name="TBL_STD_CONTACT")
public class StudentContact extends Serializable{
public StudentContact(){ }
@Id
@Column(name="ID")
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer contactId;
...
...
// all the properties mapped,
public static class Builder{
private Integer contactId;
private String phoneNo;
private String streetAddr;
....
// all the properties as same as StudentContact
public Builder(String val){
this.city = val;
}
public Builder setContactId(Integer contactId) {
this.contactId = contactId;
return this;
}
// rest all the setter methods are like the above, having return type Builder
public StudentContact build(){
return new StudentContact(this);
}
}
private StudentContact(Builder builder){
this.contactId = builder.contactId;
this.city = builder.city;
this.phoneNo = builder.phoneNo;
.......
...
}
}
在上面的StudentContact实体中你可以看到我创建了一个内部类Builder,它的职责是使用它的“build”方法构建StudentContact对象,你可以在下面提到的StudentTest类中看到它
现在我编写了一个StudentTest类,其主要方法如下,
public class StudentTest {
public static void main(String [] args){
try{
StudentDAO dao = new StudentDAO();
Student student = dao.getEntity(110);
StudentContact contact = new StudentContact.Builder("Bhubaneshwar")
.setPhoneNo("9867342313")
.setPinCode("400392")
.setState("Odhisha").build();
student.setContact(contact);
dao.updateEntity(student);
}catch(Exception e){
e.printStackTrace();
}
}
当我从netbeans IDE运行StudentTest时,它会显示错误
Exception in thread "main" java.lang.VerifyError: Constructor must call super() or this() before return in method com.entities.StudentContact.<init>()V at offset 0
我无法理解这个错误,这个错误是因为我在StudentContact类中创建的内部类,
我该如何解决这个问题,
答案 0 :(得分:0)
java.lang.VerifyError
表示字节码不正确。通常可以通过完全清理/重建项目来修复它。 (我有时在包/类重命名后,或类从一个包移动到另一个包)时看到它。
正如评论中提到的那样:extends Serializable
不正确。 (也许是你的字节码问题的原因?)