Springboot项目中Mybatis升级Mybatis-plus依赖冲突问题
2021-05-28 22:03
标签:class end 报错 mapper config enc org configure str 原项目系统中已经引入了 Mybatis 和 pagehelper ,当引入Mybatis-plus 后启动项目报错 SqlSessionFactory 错误,排查原因后为依赖冲突导致,需排除部分jar包 1. Mybatis中 2. pagehelper 中 4.引入autoconfigure Springboot项目中Mybatis升级Mybatis-plus依赖冲突问题 标签:class end 报错 mapper config enc org configure str 原文地址:https://www.cnblogs.com/Open-ing/p/14774195.html
mapper-spring-boot-starter
原Mybatis中需排除下面2个依赖
mybatis
mybatis-spring
pagehelper-spring-boot-starter
需排除下面包
mybatis-spring-boot-starter
3.引入Mybatis-plus
mybatis-plus-boot-starter
mybatis-spring-boot-autoconfigure5. 修改配置文件,将原 mybatis 改成 mybatis-plus
mybatis-plus:
mapper-locations: classpath*:/mapper/*.xml,classpath*:/mapper/**/*.xml
configuration:
mapUnderscoreToCamelCase: true
文章标题:Springboot项目中Mybatis升级Mybatis-plus依赖冲突问题
文章链接:http://soscw.com/index.php/essay/88825.html