spring boot包扫描不到controller层
Posted 随笔
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot包扫描不到controller层相关的知识,希望对你有一定的参考价值。
启动类代码
package com.maven.demo;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.transaction.annotation.EnableTransactionManagement;
@SpringBootApplication
@EnableAutoConfiguration
@ComponentScan("com.maven.demo")
@MapperScan("com.maven.demo")
@EnableTransactionManagement
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}
发现路径都是对的,但是就是扫描不到controller层
原因是maven多模块项目忘记引入子模块的maven依赖了,启动类是一个子模块,controller的代码是另外一个子模块,低级错误。
以上是关于spring boot包扫描不到controller层的主要内容,如果未能解决你的问题,请参考以下文章
Spring Boot类无法被扫描到(Class is never used)
spring boot 扫描不到自定义的Controller。。。
为啥添加 @EnableAutoConfiguration 会导致 spring-boot 失败并显示“无法找到要扫描的 JPA 包”