我很困惑,因为我编写了以下标准,返回零结果但是当我在数据库上运行生成的SQL查询时返回正确的结果。
Criteria criteria = sessionFactory.getCurrentSession()
.createCriteria(Product.class, "product")
.add(Restrictions.ilike("product.name", " %" + name + "%"))
.add(Restrictions.ilike("product.code", code))
.setProjection(Projections.property("product.name").as("name"));
List<String> st = criteria.list();
System.err.println("st size is:" + st.size());
@Entity
public class Product implements java.io.Serializable {
/**
*
*/
private static final long serialVersionUID = 887867468898785287L;
@Id
private String code;
@ManyToOne
@Id
private Factory factory;
private String name;
...
}
控制台输出
Hibernate:
/* criteria query */ select
this_.name as y0_
from
Product this_
where
lower(this_.name) like ?
and lower(this_.code) like ?
st size is:0
答案 0 :(得分:1)
正如Sergey Lagutin建议的那样,我认为问题将是代码中%之前的空白。如果不是解决方案,请检查数据库连接以确保连接到正确的数据库。