maven下,mybatis-plus和pagehelp冲突的解决

解决办法:

修改pom.xml文件

排除 pagehelp 包的mybatis和mybatis-spring依赖

        
        
            com.github.pagehelper
            pagehelper-spring-boot-starter
            1.2.5
            
                
                    org.mybatis
                    mybatis
                
                
                    org.mybatis
                    mybatis-spring
                
            
        

内是要排除的依赖

 

注:mybatis-plus:3.2.0    pagehelp:1.2.5 。 这个版本组合下,只排除mybatis不够,得两个都排除。

 

你可能感兴趣的:(java)