1

这是我的课:

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]

其中“类”是包名。

4

2 回答 2

3

首先:Hibernate 要求您的实体具有默认的无参数构造函数。

第二:您的 hql 应该是:"from TrainLate t where t.id = :id".

String hql = "from TrainLate t where t.id = :id";
List<TrainLate> result = (List<TrainLate>) session.createQuery(hql).setParameter("id", 1).list();

甚至更好。当您知道实体的 id 时,您无需使用 hql 进行搜索:

TrainLate t = session.get(TrainLate.class, 1L); // I assume your id is a Long

null如果未找到实体,则返回。

或者

TrainLate t = session.load(TrainLate.class, 1L); // I assume your id is a Long

ObjectNotFoundException如果未找到实体,则会抛出一个。

于 2012-09-11T06:43:59.077 回答
1

我知道这听起来很傻,但你试过调试这个东西吗?

我的第一个想法是(如果我是休眠状态 :))使用 No-OP 构造函数创建一个 TrainLate 对象,然后调用一系列设置器来设置 id、startDate 和 endDate。

我没有在你的代码片段中看到它...

于 2012-09-11T06:44:28.403 回答