一个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>
posted @ 2019-02-27 16:45  又小雨  阅读(396)  评论(0编辑  收藏  举报