关于在Hibernate里使用select count(*) 返回值的问题说明

因为JPA里面的返回值规定是Long, Hibernate为了兼容这个,所以修改了返回值。

如果你从Hibernate 3.0.x/3.1.x升级到最新的hibernate,一定要注意,3.2+版的很多sql函数如count(), sum()的唯一返回值已经从Integer变为Long,如果不升级代码,会得到一个ClassCastException。

这个变化主要是为了兼容JPA,可以在hibernate.org的最新文档中找到说明。

Hibernate Team也提供了一个与原来兼容的解决方案:


  Configuration classicCfg = new Configuration();
  classicCfg.addSqlFunction( "count", new ClassicCountFunction());
  classicCfg.addSqlFunction( "avg", new ClassicAvgFunction());
  classicCfg.addSqlFunction( "sum", new ClassicSumFunction());

  SessionFactory classicSf = classicCfg.buildSessionFactory();


个人认为有个更好的解决方法,可以利用Number类型来接受返回值,因为Integer Long Double等都是Nuber类的子类,可以通过Number对象实例的对应 intValue() longValue () 等返回自己需要的值。

如下代码:

count = ((Number) this.getList(hql.toString(), argMap, null, null).get(0)).intValue();
		return count;



你可能感兴趣的:(关于在Hibernate里使用select count(*) 返回值的问题说明)