これが私のクラスです:
public class TrainLate {
private int id;
private Date startDate;
private Date endDate;
private Set<TrainSchedule> ts=new HashSet<TrainSchedule>();
public TrainLate(){}
public TrainLate(int id, Date startDate, Date endDate) {
super();
this.id = id;
this.startDate = startDate;
this.endDate = endDate;
}
// setters and getters...
}
タイプ日付はjava.sql.Date
別のクラスでは、HQLを使用します。
String hql="SELECT new TrainLate(id,startDate,endDate) FROM TrainLate "+ "WHERE id="+String.valueOf(index);
ここで、indexはintパラメーターです。
これが「TrainLate.hbm.xml」です。
<class name="classes.TrainLate">
<id name="id">
<generator class="native"/>
</id>
<property name="startDate"/>
<property name="endDate"/>
<set name="ts" lazy="false" cascade="all-delete-orphan" inverse="true">
<key column="trainLateID" />
<one-to-many class="classes.TrainSchedule" />
</set>
</class>
例外は次のとおりです。
Unable to locate appropriate constructor on class [classes.TrainLate] [SELECT new TrainLate(id,startDate,endDate) FROM classes.TrainLate WHERE id=0]
ここで、「classes」はパッケージ名です。