ok正题:最近练了一个Spring Boot项目。部署完成后发现无法访问contoller,一直在报404。
最后发现是maven之间多模块调用时,使用@ComponentScan注解扫描了其他模块的包。
@MapperScan("com.tanhua.common.mapper") //设置mapper接口的扫描包
@SpringBootApplication
@ComponentScan(basePackages = {"com.tanhua.common") // 可以将com.tanhua.common包中的类扫描过来, 必须将自己的包路径也加上, 否则无法扫描到对应的controller
public class MyApplication {
public static void main(String[] args) {
SpringApplication.run(MyApplication.class, args);
}
}
导致没有启动类没有扫描自己的包,加上自己包之后,问题解决。
@MapperScan("com.tanhua.common.mapper") //设置mapper接口的扫描包
@SpringBootApplication
@ComponentScan(basePackages = {"com.tanhua.common.*","com.tanhua.sso"}) // 可以将com.tanhua.common包中的类扫描过来, 必须将自己的包路径也加上,
// 否则无法扫描到对应的controller
public class MyApplication {
public static void main(String[] args) {
SpringApplication.run(MyApplication.class, args);
}
}
做一下记录,方便自己查看。
在练习SpringBoot项目时遇到部署后Controller无法访问的问题,原因是@SpringBootApplication的@ComponentScan注解未包含当前模块的包。通过调整@ComponentScan,添加自己的包路径,如'com.tanhua.sso',成功解决了404错误。这是一个关于SpringBoot应用配置和组件扫描的常见问题解决方案。
1427






