欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

hibernate的分页模糊查询功能

程序员文章站 2024-03-06 14:50:38
在web项目中,显示数据一般采用分页显示的,在分页的同时,用户可能还有搜索的需求,也就是模糊查询,所以,我们要在dao写一个可以分页并且可以动态加条件查询的方法。分页比较简...

在web项目中,显示数据一般采用分页显示的,在分页的同时,用户可能还有搜索的需求,也就是模糊查询,所以,我们要在dao写一个可以分页并且可以动态加条件查询的方法。分页比较简单,采用hibernate提供的分页,动态条件采用map(“字段”,模糊值)封装查询条件,map可以添加多个查询条件,是个不错的选择,从而达到实现分页并模糊查询。

@override
  public list<t> findpage(int page, int length, map<string, object> pram) {
     list<t> result = null;  
     try 
     { 
           //初始化hql,this.entityclazz.getsimplename()是泛型的真实类名,在构造函数中获取
       string hql = "from " + this.entityclazz.getsimplename() + " where 1=1 and "; //注意空格
       session session = this.sesionfactory.opensession(); //获取连接
       if(!pram.isempty())  //判断有无条件
       {
         iterator<string> it = pram.keyset().iterator(); //迭代map
         while(it.hasnext())
         {
            string key = it.next(); //获取条件map中的key,即条件字段
            hql = hql + key + " like " + "'%" + pram.get(key) + "%'" + " and "; //将字段和模糊值拼接成hql
         }
       }
       hql += " 2=2"; //在hql末尾加上 2=2,方便hql再次拼接
       system.out.println(hql);
       query query = session.createquery(hql); 
       query.setfirstresult((page - 1) * length); //设置分页页码  
       query.setmaxresults(length);  //设置每页数据长度
       result = query.list(); //返回结果集
     } catch (runtimeexception re)  
     {  
       throw re;  
     }  
     return result;  
  }

以上所述是小编给大家介绍的hibernate的分页模糊查询功能,希望对大家有所帮助