SpringBoot------集成MyBatis报错
Posted tianhengblogs
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot------集成MyBatis报错相关的知识,希望对你有一定的参考价值。
在spring boot启动main方法所在的类中加入
@MapperScan注入后报错:
Invalid default: public abstract java.lang.Class org.mybatis.spring.annotation.MapperScan.factoryBean()
解决方法:
在pom.xml中加入
<dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>1.3.2</version> <scope>runtime</scope> <dependency>
转载:
https://blog.csdn.net/qq_28286027/article/details/83013307
以上是关于SpringBoot------集成MyBatis报错的主要内容,如果未能解决你的问题,请参考以下文章