mybatis-plus后出现ClassNotFoundException: org.mybatis.logging.LoggerFactory
因引入mybatis-plus,和之前的pagehelper冲突,解决如下:<!-- spring boot 整合pagehelper依赖 版本有兼容性问题 第一种方式依赖的包--><dependency><groupId>com.github.pagehelper</groupId>...
·
因引入mybatis-plus,和之前的pagehelper冲突,
解决如下:
<!-- spring boot 整合pagehelper依赖 版本有兼容性问题 第一种方式依赖的包-->
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper-spring-boot-starter</artifactId>
<version>1.2.5</version>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</exclusion>
<exclusion>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
</exclusion>
<exclusion>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-spring</artifactId>
</exclusion>
</exclusions>
</dependency>
其中如下配置是新增:
<exclusion>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
</exclusion>
<exclusion>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-spring</artifactId>
</exclusion>
结论:mybatis-plus中已经存在mybatis相关,则在pagehelper中应该排除,避免冲突,另外建议分页使用mybatis-plus自带分页插件,不要使用pagehelper。
魔乐社区(Modelers.cn) 是一个中立、公益的人工智能社区,提供人工智能工具、模型、数据的托管、展示与应用协同服务,为人工智能开发及爱好者搭建开放的学习交流平台。社区通过理事会方式运作,由全产业链共同建设、共同运营、共同享有,推动国产AI生态繁荣发展。
更多推荐

所有评论(0)