我需要从Country到Superclass Place(@MappedSuperclass)的OneToMany关联。它可以是双向的。我需要像@OneToAny ......
这样的东西@MappedSuperclass
public class Place {
private String name;
private Country country;
@Column
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@ManyToOne
@JoinColumn(name="country_id")
public Country getCountry() {
return country;
}
public void setCountry(Country country) {
this.country = country;
}
}
国家:
@Entity
public class Country {
private long id;
private String name;
private List<Place> places;
@Any(metaColumn = @Column(name = "place_type"), fetch = FetchType.EAGER)
@AnyMetaDef(idType = "integer", metaType = "string", metaValues = {
@MetaValue(value = "C", targetEntity = City.class),
@MetaValue(value = "R", targetEntity = Region.class) })
@Cascade({ org.hibernate.annotations.CascadeType.ALL })
//@JoinColumn(name="unnecessary")
//@OneToMany(mappedBy="country") // if this, NullPointerException...
public List<Place> getPlaces() {
return places;
}
//and rest of class
没有@JoinColunm就有异常
Caused by: org.hibernate.AnnotationException: @Any requires an explicit @JoinColumn(s): tour.spring.bc.model.vo.Country.places
在表中,City和Region是表Country(Region.country_id,City.country_id)的外键,这是正常的。 但是我不需要表Country中的外键来表Region和City所以我不需要@JoinColum。
我一直在寻找解决方案,但似乎没有好的解决方案。
答案 0 :(得分:5)
@Any
在这里没有意义,因为外键位于Place
侧,因此不需要额外的元列。
我不确定是否可以创建与@MappedSuperclass
的多态关系。但是,您可以尝试将Place
声明为@Entity @Inheritance(InheritanceType.TABLE_PER_CLASS)
,它应该生成相同的数据库模式并允许多态关系。