我正在尝试添加新行程并放入数据库。它们之间存在多对一的关系,因此可以将一个地方分配到许多地方。地方正在添加正确,但在添加旅行期间有这个例外...... 我知道有很多类似的话题,但没有一个能帮助我解决这个问题。
ERROR: HHH000122: IllegalArgumentException in class: pl.th.java.biuro.hibernate.Place, getter method of property: idPlace
Exception found while adding new trip: IllegalArgumentException occurred calling getter of pl.th.java.biuro.hibernate.Place.idPlace
org.hibernate.PropertyAccessException: IllegalArgumentException occurred calling getter of pl.th.java.biuro.hibernate.Place.idPlace
at org.hibernate.property.BasicPropertyAccessor$BasicGetter.get(BasicPropertyAccessor.java:192)
Hibernate旅行映射:
<hibernate-mapping>
<class name="pl.th.java.biuro.hibernate.Trip" table="Trip">
<id column="idTrip" name="idTrip" type="int"/>
<property column="date" name="date" type="date"/>
<property column="cost" name="cost" type="int"/>
<property column="profit" name="profit" type="int"/>
<property column="organisator" name="organisator" type="string"/>
<property column="period" name="period" type="int"/>
<property column="food" name="food" type="string"/>
<property column="transport" name="transport" type="string"/>
<property column="persons" name="persons" type="int"/>
<property column="kidsAmount" name="kidsAmount" type="int"/>
<property column="idHotel" name="idHotel" type="int"/>
<many-to-one name="idPlace" column="idPlace" class="pl.th.java.biuro.hibernate.Place" not-null="true" />
</class>
休眠地点映射:
<hibernate-mapping>
<class name="pl.th.java.biuro.hibernate.Place" table="Place">
<id column="idPlace" name="idPlace" type="int">
<generator class="native"/>
</id>
<property column="country" name="country" type="string"/>
<property column="city" name="city" type="string"/>
<property column="island" name="island" type="string"/>
<property column="information" name="information" type="string"/>
</class>
旅行课程:
public class Trip {
private int idTrip;
private int idPlace;
private int idHotel;
private Date date;
private int cost;
private int profit;
private String organisator;
private int period;
private String food;
private String transport;
private int persons;
private int kidsAmount;
private String ownerName;
private String ownerLastName;
private Place place;
public Trip() {
}
public Trip(int idTrip, Date date, int cost, int profit, String organisator, int period, String food, String transport, int persons, int kidsAmount) {
this.idTrip = idTrip;
this.date = date;
this.cost = cost;
this.profit = profit;
this.organisator = organisator;
this.period = period;
this.food = food;
this.transport = transport;
this.persons = persons;
this.kidsAmount = kidsAmount;
}
public Trip(int idTrip, Date date, int cost, int profit, String organisator, int period, String food, String transport, int persons, int kidsAmount, String ownerName, String ownerLastName, Place place) {
this.idTrip = idTrip;
this.date = date;
this.cost = cost;
this.profit = profit;
this.organisator = organisator;
this.period = period;
this.food = food;
this.transport = transport;
this.persons = persons;
this.kidsAmount = kidsAmount;
this.ownerName = ownerName;
this.ownerLastName = ownerLastName;
this.place = place;
}
/**
* @return the idTrip
*/
public int getIdTrip() {
return idTrip;
}
/**
* @param idTrip the idTrip to set
*/
public void setIdTrip(int idTrip) {
this.idTrip = idTrip;
}
/**
* @return the place
*/
public Place getPlace() {
return place;
}
/**
* @param place the place to set
*/
public void setPlace(Place place) {
this.place = place;
}
And other get/set methods...
放置课程:
public class Place {
private int idPlace;
private String country;
private String city;
private String island;
private String information;
public Place() {
}
public Place(String country, String city, String island, String information) {
this.country = country;
this.city = city;
this.island = island;
this.information = information;
}
/**
* @return the idPlace
*/
public int getIdPlace() {
return idPlace;
}
/**
* @param idPlace the idPlace to set
*/
public void setIdPlace(int idPlace) {
this.idPlace = idPlace;
}
EDIT1 添加适当的实体现在对我有用,但我想知道有没有办法避免冗余数据?例如,我添加了一个旅行和一个与此行程相关的地点X.当我添加另一个旅行时,但在同一个地方--X,这个地方又被添加到我的数据库中。我该如何避免这种行为?
答案 0 :(得分:5)
ERROR: HHH000122: IllegalArgumentException in class: pl.th.java.biuro.hibernate.Place, getter method of property: idPlace
我认为你在插入操作上得到了这个。前面的意思是,您要向idPlace
列插入非法参数。您使用many-to-one
pl.th.java.biuro.hibernate.Place
并使用int
作为pl.th.java.biuro.hibernate.Place
。您必须将idPlace
类型从int
更改为pl.th.java.biuro.hibernate.Place
。
我希望这会对你有所帮助。
答案 1 :(得分:1)
你应该使用int idPlace int to the Trip to your Object pl.th.java.biuro.hibernate.Place