`

137. [视频]Spring Boot MyBatis升级篇-注解-分页PageHelper不生效

阅读更多

 

【视频&交流平台】

à SpringBoot视频

http://study.163.com/course/introduction.htm?courseId=1004329008&utm_campaign=commission&utm_source=400000000155061&utm_medium=share

à SpringCloud视频

http://study.163.com/course/introduction.htm?courseId=1004638001&utm_campaign=commission&utm_source=400000000155061&utm_medium=share

à Spring Boot源码

https://gitee.com/happyangellxq520/spring-boot

à Spring Boot交流平台

http://412887952-qq-com.iteye.com/blog/2321532

  

【本篇博客,有配套视频,视频地址:《Spring Boot MyBatis升级篇-注解-分页PageHelper不生效,公众号中点击下面的阅读原文,视频中讲解的更详细】

需求缘起:

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

 PageHelper.startPage(1,2);

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

 

1)原因1mybatis-spring-boot-starter版本有误

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

<dependency>
        <groupId>org.mybatis.spring.boot</groupId>
        <artifactId>mybatis-spring-boot-starter</artifactId>
        <version>1.0.0</version>
    </dependency>

 

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

<dependency>
        <groupId>org.mybatis.spring.boot</groupId>
        <artifactId>mybatis-spring-boot-starter</artifactId>
        <version>1.3.0</version>
</dependency>

 

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

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

 

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

 

2)原因2:重新定义了SqlSessionFactory配置

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

    @Bean
    public SqlSessionFactory sqlSessionFactoryBean(DataSource dataSource) throws Exception {
       SqlSessionFactoryBean sqlSessionFactoryBean = new SqlSessionFactoryBean();
       sqlSessionFactoryBean.setDataSource(dataSource);
       PathMatchingResourcePatternResolver resolver = new PathMatchingResourcePatternResolver();
       Interceptor[] plugins =  new Interceptor[]{pageHelper()};
       sqlSessionFactoryBean.setPlugins(plugins);
       // 指定mybatisxml文件路径
       sqlSessionFactoryBean.setMapperLocations(resolver
              .getResources("classpath:/mybatis/*.xml"));
       return sqlSessionFactoryBean.getObject();
    }

 

 

总结:

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

 

视频&交流平台

à SpringBoot网易云课堂视频

http://study.163.com/course/introduction.htm?courseId=1004329008

à Spring Boot交流平台

http://412887952-qq-com.iteye.com/blog/2321532

 

 

 

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics