原因:因为idea创建工程默认会把引导类放到项目名的一个包下,而引导类智慧扫描当前包及子包下的内容,所以出现
2021-03-25 18:30:57.592 WARN 14960 — [ restartedMain] o.m.s.mapper.ClassPathMapperScanner : No MyBatis mapper was found in ‘[com.qimeng.spring_mybatis]’ package. Please check your configuration.异常

在这里插入图片描述
解决方法1:包引导类移出去,问题就解决了

解决方法2:使用@SpringBootApplication注解的scanBasePackages属性指定包扫描路径
或者用@ComponentScan注解指定草庙路径,不过@SpringBootApplication继承了@ComponentScan所以不能同时使用

可以用
@SpringBootConfiguration
@EnableAutoConfiguration
@ComponentScan
这三个注解代替@SpringBootApplication

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐