hibernate 分页

smartclient 自动触发分页机制,通过下拉自动传递后台两个参数,后台接受后,根据这两个参数实现分页功能,哈哈
加之hibernate提供的分页,爽爽滴,几行代码搞定。
 
 
	public List<ProjItemSumHead> findProjItemSumHeadPage(final int firstResult, final int maxResults) {
		return this.hibernateTemplate.executeFind(new HibernateCallback<List<ProjItemSumHead>>() {
			@Override
			public List<ProjItemSumHead> doInHibernate(Session session) throws HibernateException, SQLException {
				return session.createQuery("from ProjItemSumHead").setFirstResult(firstResult).setMaxResults(maxResults).list();
			}
		});
	}


有两篇文章写得非常不错


http://www.iteye.com/topic/261


http://gaogengzhi.iteye.com/blog/266301

你可能感兴趣的:(Hibernate,session)