Exception:A Foreign key refering Province from City has the wrong number of column. should be 2

发生错误的类 City:

@Entity
@Table(name = "CITY")
@SuppressWarnings("serial")
public class City implements ICity,Serializable{
	@EmbeddedId
	private CityPK city_PK;
	
	@OneToMany(mappedBy = "city", cascade = CascadeType.MERGE, fetch = FetchType.LAZY)
	@Fetch(FetchMode.SUBSELECT)
	private Set<Area> areas;
	
	@ManyToOne
	@JoinColumn(name = "prov_Code")
	private Province province;	

    Get/Set method...

}

 原因:Province是联合主键,应该使用如下方式:

@ManyToOne
@JoinColumns({@JoinColumn(name = "prov_Code"),@JoinColumn(name = "prov_Name")})
private Province province;	

 

相关文章:

  • 2022-02-24
  • 2021-08-23
  • 2021-12-07
  • 2021-12-24
  • 2022-01-16
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-12-12
  • 2021-06-03
  • 2021-06-02
  • 2022-02-23
  • 2021-08-24
  • 2021-11-28
  • 2022-02-18
相关资源
相似解决方案