Criteria Criteria是一种比HQL更面向对象的查询方式。Criteria的创建方式: Criteria crit = session.createCriteria(DomainClass.class); 简单属性条件如: criteria.add(Restrictions.eq(propertyName,value)); criteria.add(Restrictions.eqProperty(propertyName,otherPropertyName)); 新建一Cri类来测试Criteria查询
官方还是推荐使用HQL查询,因为HQL更强大一些。个人觉得Criteria比较容易理解