mybatis分页插件pageHelper简单实用

工作的框架spring springmvc mybatis3

首先使用分页插件必须先引入maven依赖,在pom.xml中添加如下


<dependency>
<groupId>com.github.pagehelpergroupId>
<artifactId>pagehelperartifactId>
<version>3.7.5version>
dependency>

其次需要在配置文件中添加配置,有两种方式

1,新建mybatis-config.xml内容如下





 <configuration>
  
  <plugins>
   
   <plugin interceptor="com.github.pagehelper.PageHelper">
    
       <property name="dialect" value="MySQL"/>
       
       <property name="rowBoundsWithCount" value="true"/>
   plugin>
plugins>
 configuration>

在spring-mybatis.xml中添加一个bean属性

id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource" />

加载全局的配置文件

<property name="configLocation" value="classpath:mybatis-config.xml">property>

配置mapper的扫描,找到所有的mapper.xml映射文件。

<property name="mapperLocations" value="classpath:com/lyitong/mapping/*.xml">property>

备注:如果你的mybatis-config.xml配置文件开启了如下别名配置:

    <typeAliases>
        
        <package name="com.lyt.usermanage.mapper"/>
    typeAliases>

那么你的spring和mybatis整合文件就得加上相应的属性,否则会造成mybatis配置文件加载不成功报异常,如下:

 <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
        <property name="dataSource" ref="dataSource" />
        
        <property name="configLocation" value="classpath:mybatis/mybatis-config.xml">property>
        
        <property name="mapperLocations" value="classpath:com/lyt/usermanage/mapper/*.xml">property>
        
        <property name="typeAliasesPackage" value="classpath:com/lyt/usermanage/pojo/*">property>
    bean>

相比于上面的配置我们这里多了一步

        <property name="typeAliasesPackage" value="classpath:com/lyt/usermanage/pojo/*">property>

配置的时候要注意mybatis配置文件和spring-mybatis整合文件的属性要统一。

2.如上操作配置完成,下面第二种方法

直接在spring-mybatis.xml中配置如下属性

<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="mapperLocations" value="classpath:com/lyitong/mapping/*.xml">property>


<property name="plugins">
   <array>
     <bean class="com.github.pagehelper.PageHelper">
       <property name="properties">
         <value>
           dialect=mysql
           rowBoundsWithCount=true
         value>
       property>
     bean>
   array>
property>
bean>

配置文件加载好之后,就可以直接使用,具体使用代码如下:

PageHelper.startPage(Integer.parseInt(currentPage), Integer.parseInt(pageSize));
    List<LytBbsTz> publishTz = bbsTzDao.getPublishTz(userId);
    PageInfo<LytBbsTz> info = new PageInfo<LytBbsTz>(publishTz);
    map.put("status", 1);
    map.put("tzList", info.getList());
    return map;

前台需要传入的参数是当前页和页面显示数目,当然页面显示数目也可以后台规定,一般在接收参数时最好加上默认配置如下:

@RequestParam(defaultValue="1",value="currentPage")String currentPage, @RequestParam(defaultValue="10",value="pageSize")String pageSize

这是如果接收参数为空字符串时它自身默认显示的页面和条数,这个可以自己规定
以上就是pageHelper的简单应用,如有不足请留言一起探讨,谢谢!!!!

你可能感兴趣的:(框架)