听起来很奇怪。但我需要在个人实体中验证公司的字段地址。Company 是 Person 字段,Addres 是 Company 字段。
我想在个人实体中验证公司的地址。
为什么??因为如果我以前在 Person 实体中使用它,公司应该有一个地址?
如何实施此验证?
@Entity
@Table(schema = Constants.DB_SCHEMA)
public class Person{
Company company;
// Validation of the address should come here ???
public Company getCompany() {
return company;
}
}
@Entity
@Table(schema = Constants.DB_SCHEMA)
public class Company{
String address;
}