当前使用的Hibernate版本是3.2.6,数据库是Oracle11g,当使用 HibernateTemplate 的execute方法执行sql语句(不是 hql 语句)查询的时候,使用count聚合函数,返回结果是 BigDecimal 类型,不是Integer也不是Long,需强转成 BigDecimal 类型,然后调用其对象的 intValue 或 longValue 方法就可以了。
与上不同的是,当调用 HibernateTemplate 的 find 方法执行 hql 时,如果hql中有 count 函数,返回的结果是 Long 类型。
注:使用Criteria的count查询时返回的是Integer类型。
public int getAlarmCountByFilter(final AlarmFilterBean filter,final int alarmCatelog) { return getHibernateTemplate().execute(new HibernateCallback<Integer>() { @Override public Integer doInHibernate(Session session) throws HibernateException, SQLException { Criteria c = session.createCriteria(ActiveAlarmBean.class); c.setProjection(Projections.rowCount()); addFilterRestrictions(c,filter,alarmCatelog); return (Integer)c.uniqueResult(); } }); }
----------------------------------------------------------------------------------------------------------分割线-----------------------------------------------------------------------------------------------------------
将数据库改为MySQL5.1后,执行sql的count语句返回的是BigInteger类型,于是产生ClassCastException异常,为了不再产生类似问题,可将执行SQL语句返回的List<Object[ ]>中已知的数值类型强转成Number,然后调用Number的longValue(),inValue(),floatValue()方法得到想要的数值类型即可。
final String sql = "select t.TEMPLATE_ID,count(d.TEMPLATE_ID) from RES_INPUT_TEMPLATE t left join "+tableName+" d" +" on t.TEMPLATE_ID = d.TEMPLATE_ID " +" where t.TEMPLATE_TYPE = "+templateType+" " +" group by t.TEMPLATE_ID"; Map<Long,Integer> idCountMap = new HashMap<Long, Integer>(); List<Object[]> list = inputTemplateDao.getHibernateTemplate().execute(new HibernateCallback<List<Object[]>>() { @SuppressWarnings("unchecked") public List<Object[]> doInHibernate(Session session) throws HibernateException, SQLException { return session.createSQLQuery(sql).list(); } }); for(Object[] result : list){ idCountMap.put(((Number)result[0]).longValue(), ((Number)result[1]).intValue()); }