@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 ****************");
}
}
05-02 02:54