如下方法:
public TaxConfig getTaxConfig(String sys, String key)throws RuntimeException {
List<TaxConfig> results = find(" from TaxConfig where sysName=? and key=?",obj);
if(results == null || results.isEmpty() ){
throw new RuntimeException("taxConfig not exist!");
}else{
return (TaxConfig)results.get(0);
}
}
第一次查询时结果正常,输出的SQL语句也正常.输出的SQL如下:
select taxconfig0_.F_SYSNAME as F1_10_, taxconfig0_.F_KEY as F2_10_, taxconfig0_.F_NOTE as F3_10_, taxconfig0_.F_VALTYPE as F4_10_, taxconfig0_.F_VAL as F5_10_ from tax_config taxconfig0_ where taxconfig0_.F_SYSNAME='sagd' and taxconfig0_.F_KEY='gantPath'
第二次查询时出错.错误如下:
hql is ... from TaxConfig where sysName='sagd' and key='gantPath'
Hibernate: select taxconfig0_.F_SYSNAME as F1_10_0_, taxconfig0_.F_KEY as F2_10_0_, taxconfig0_.F_NOTE as F3_10_0_, taxconfig0_.F_VALTYPE as F4_10_0_, taxconfig0_.F_VAL as F5_10_0_ from tax_config taxconfig0_ where taxconfig0_.F_SYSNAME=?
[sagd] WARN [http-9090-Processor23] DefaultRemoter.warn(67) | Method execution failed:
org.springframework.orm.hibernate3.HibernateSystemException: More than one row with the given identifier was found: sagd, for class: com.lhsm.core.model.TaxConfig; nested exception is org.hibernate.HibernateException: More than one row with the given identifier was found: sagd, for class: com.lhsm.core.model.TaxConfig
还有就是如果数据库中的表只有一条记录,不会出现上面的问题,多于一条第二次查询就出错.
而换成了如下写法就没有问题,请问这是怎么回事?
public List find(final String hql, final Object... values) {
Assert.hasText(hql);
return super.getHibernateTemplate().executeFind(
new HibernateCallback() {
public Object doInHibernate(Session s)
throws HibernateException, SQLException {
Query query = s.createQuery(hql);
query.setCacheable(false);
for (int i = 0; i < values.length; i++) {
query.setParameter(i, values[i]);
}
List list = query.list();
return list;
}
});
}
分享到:
相关推荐
List result = getHibernateTemplate().executeFind(new HibernateCallback() { @Override public Object doInHibernate(Session session) throws HibernateException, SQLException { Query query = session....
4. **便捷操作**:`getHibernateTemplate()`提供了多种方便的查询方法,如`find()`,可以根据HQL(Hibernate Query Language)或者SQL直接执行查询,返回结果集。此外,还有如`findByExample()`这样的方法,根据实体...
这里直接调用`getHibernateTemplate().find(hql).size()`来获取列表的大小,即记录总数。 在实现分页查询的过程中,`HibernateDaoSupport`起到了关键作用。它是Spring提供的一个支持类,使得我们可以在不直接接触`...
return getHibernateTemplate().executeFind(new HibernateCallback() { public Object doInHibernate(Session session) throws HibernateException, SQLException { Query query = session.createQuery(hql); ...
return getHibernateTemplate().executeFind(new HibernateCallback() { public Object doInHibernate(Session session) throws HibernateException, SQLException { Query query = session.createQuery(hql); ...
return getHibernateTemplate().find(hql).size(); } } ``` 这里利用了Spring提供的`HibernateDaoSupport`类,通过`executeFind`方法执行分页查询,`query.setFirstResult(offset)`和`query.setMaxResults(length...
List list = getHibernateTemplate().executeFind(new HibernateCallback() { public Object doInHibernate(Session session) throws HibernateException, SQLException { Query query = session.createQuery(hql...
List list = getHibernateTemplate().executeFind(new HibernateCallback() { public Object doInHibernate(Session session) throws HibernateException, SQLException { Query query = session.createQuery(hql...
在`findByPage`方法中,使用HibernateCallback接口,通过`getHibernateTemplate().executeFind()`执行自定义的分页查询。例如: ```java @Repository public class CostDaoImpl extends HibernateDaoSupport ...
return ((Number)getHibernateTemplate().find(hql).size()).intValue(); } } ``` 在这个实现中,我们利用了Hibernate提供的 `executeFind` 方法来执行HQL查询,并通过设置 `setFirstResult` 和 `setMaxResults` ...
List list = getHibernateTemplate().executeFind(new HibernateCallback() { public Object doInHibernate(Session session) throws HibernateException, SQLException { Query query = session.createQuery(hql...
return getHibernateTemplate().executeFind(new HibernateCallback() { public Object doInHibernate(Session session) throws HibernateException, SQLException { Query query = session.createQuery(hql); ...
return getHibernateTemplate().find(hql).size(); } } ``` 这里利用了Spring提供的`HibernateDaoSupport`类,通过`executeFind`方法执行查询操作。`setFirstResult`和`setMaxResults`方法用于设置分页参数。 ###...
List list = getHibernateTemplate().executeFind(new HibernateCallback() { public Object doInHibernate(Session session) throws HibernateException, SQLException { Query query = session.createQuery(hql...
这些方法都通过调用`getHibernateTemplate().executeFind()`来执行具体的分页查询操作。 ##### 2. Dao接口定义 为了更好地组织代码,我们通常会定义一个DAO(Data Access Object)接口,用来规范数据访问层的行为...
这个方法直接通过`getHibernateTemplate().find(hql)`获取所有匹配HQL的记录数。 3. 在Action中调用Hibernate分页方法: 在Struts2的Action类中,可以调用上述的Hibernate分页方法,并将结果传递给JSP页面进行展示...
`getAllRowCount`则直接通过`getHibernateTemplate().find(hql).size()`获取记录总数。 2. **分页逻辑处理**: 为了更好地管理和传递分页信息,可以创建一个名为`PageBean`的类,它包含以下属性: - `list`:存储...