一个springboot注解不成功的小问题

报错:
  Consider defining a bean of type ''xxx" in your configuration.

最后发现是POM.xml里面 关于mybatis的包

<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>1.3.2</version>
</dependency>

写错成了
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>3.4.6</version>
</dependency>

猜你喜欢

转载自www.cnblogs.com/rain318/p/10444747.html
今日推荐