@ComponentScan 告诉Spring
从哪里找到bean。
如果你的其他包都在@SpringBootApplication
注解的启动类
所在的包及其下级包,则你什么都不用做,SpringBoot
会自动帮你把其他包都扫描了。
如果你有一些bean
所在的包,不在
的包及其下级包,那么你需要手动加上启动类
@ComponentScan
注解并指定那个bean
所在的包。
@SpringBootApplication
@ComponentScan({"com.demo"})
public class Application {
private static final Logger LOG = LoggerFactory.getLogger(Application.class); public static void main(String[] args) {
SpringApplication app = new SpringApplication(Application.class);
app.setBannerMode(Banner.Mode.OFF);
app.setWebEnvironment(true);
app.run(args);
LOG.info("**************** Startup Success ****************");
}
}