我的装备:
Hibernate 3.6.9
我的实体类很简单,
@Entity
@Table(name = "RegistrationRequests")
public class RegistrationRequest {
@Id
@GeneratedValue
Integer id;
String uuid;
... getters and setters ...
}
uuid被分配给UUID.randomUUID()。toString(),并正确地保存在数据库中。
现在,问题是我尝试使用Hibernate Criteria从数据库中检索存储的请求。
Criteria criteria = sessionFactory.getCurrentSession().createCriteria(RegistrationRequest.class);
criteria.add(Restrictions.eq("uuid", '\'' + uuid + '\''));
List requests = criteria.list();
总是产生一个空结果,但是如果我执行生成的SQL,
select
this_.id as id2_0_,
this_.created as created2_0_,
this_.email as email2_0_,
this_.isVerified as isVerified2_0_,
this_.name as name2_0_,
this_.password as password2_0_,
this_.surname as surname2_0_,
this_.uuid as uuid2_0_
from
RegistrationRequests this_
where
this_.uuid='ced61d13-f5a7-4c7e-a047-dd6f066d8e67'
结果正确(即从数据库中选择一条记录)。
我有点难过,尝试了一切没有结果......
答案 0 :(得分:1)
你不必自己设置where子句值,因为我知道hibernate api(我使用Nhibernate),因此当你将where子句值设置为'myValue'时,你实际上是在寻找匹配的字符串' myValue'你想在哪里搜索myValue。
更改为此应该可以让它正常工作:
Criteria criteria = sessionFactory.getCurrentSession().createCriteria(RegistrationRequest.class);
criteria.add(Restrictions.eq("uuid", uuid));
List requests = criteria.list();