mybatis 使用PageHelper不生效 - 第62篇

【从零开始学习SpirngBoot—常见异常汇总】

在Spirng Boot中集成了PageHelper,然后也在需要使用分页的地方加入了如下代码:

 PageHelper.startPage(1,1);

但是就是不生效呢,数据库的所有数据都查询出来了这是咋回事呢?

这个可能你使用错了版本号,主要是pom.xml文件中的版本的引入,错误的版本引入:

  1. <dependency>
  2.        <groupId>org.mybatis.spring.boot</groupId>
  3.        <artifactId>mybatis-spring-boot-starter</artifactId>
  4.        <version>1.0.0</version>
  5.     </dependency>

我在博客中已经写的很详细了,但是还是有人会掉进坑里,之所以会有这篇文章的出现就是因为已经有人已经掉进坑里了。那么正确的配置是:

  1. <dependency>
  2.        <groupId>org.mybatis.spring.boot</groupId>
  3.        <artifactId>mybatis-spring-boot-starter</artifactId>
  4.        <version>1.1.1</version>
  5. </dependency>

请不要使用1.0.0版本,因为还不支持拦截器插件,

1.1.1 是博主写帖子时候的版本,大家使用最新版本即可

比这个版本还更新的理论上也是能正常运行的,除非官网做了大的调整。

       第二种不好使的情况就是重新定义了SqlSessionFactory但是并没有配置对应的PageHelper插件,所以导致使用PageHelper.startPage(1,1);无效,那么如果要重新定义SqlSessionFactory的话,那么以下代码可以作为一个参考,其中红色部分是需要注意的地方:   

  1. @Bean
  2.     public SqlSessionFactory sqlSessionFactoryBean(DataSourcedataSource)throws Exception {
  3.        SqlSessionFactoryBean sqlSessionFactoryBean = new SqlSessionFactoryBean();
  4.        sqlSessionFactoryBean.setDataSource(dataSource);
  5.        PathMatchingResourcePatternResolver resolver =new PathMatchingResourcePatternResolver();
  6. // 以下这句配置很重要!!!!
  7.        Interceptor[] plugins =  new Interceptor[]{pageHelper()};
  8.        sqlSessionFactoryBean.setPlugins(plugins);
  9.        // 指定mybatisxml文件路径
  10.       sqlSessionFactoryBean.setMapperLocations(resolver
  11.               .getResources("classpath:/mybatis/*.xml"));
  12.        return sqlSessionFactoryBean.getObject();
  13.     }

pageHelper代码:

  1. public PageHelper pageHelper() {
  2. System.out.println("MyBatisConfiguration.pageHelper()");
  3. PageHelper pageHelper = new PageHelper();
  4. Properties p = new Properties();
  5. p.setProperty("offsetAsPageNum", "true");
  6. p.setProperty("rowBoundsWithCount", "true");
  7. p.setProperty("reasonable", "true");
  8. pageHelper.setProperties(p);
  9. return pageHelper;
  10. }

  总结下这个问题就是您引入了错误的mybatis-spring-boot-starter版本,引用正确的版本即可;其二就是重新定义SqlSessionFactory了,需要配置对应的PageHelper插件。

  1. 我就是我,是颜色不一样的烟火。
  2. 我就是我,是与众不同的小苹果。


购买完整视频,请前往:http://www.mark-to-win.com/TeacherV2.html?id=287