本文主要是介绍Error creating bean with name 'sqlSessionFactory' defined in class path resource,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1、问题:
Error creating bean with name ‘sqlSessionFactory’ defined in class path resource
2、解决办法
错误原因: Maven依赖没有使用最新版的mybatisplus
在pom.xml中,添加依赖
<!-- https://mvnrepository.com/artifact/com.baomidou/mybatis-plus -->
<dependency><groupId>com.baomidou</groupId><artifactId>mybatis-plus</artifactId><version>3.1.0</version>
</dependency>
这篇关于Error creating bean with name 'sqlSessionFactory' defined in class path resource的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!