1、@SpringBootApplication包含了@EnableAutoConfiguration和@ComponentScan两个注解,而@ComponentScan默认扫描当前包及当前包的子包。
这也是为什么SpringBoot的启动类的所在包要高于其他包。
1、@SpringBootApplication包含了@EnableAutoConfiguration和@ComponentScan两个注解,而@ComponentScan默认扫描当前包及当前包的子包。
这也是为什么SpringBoot的启动类的所在包要高于其他包。