@SpringBootApplication注解替代
来源:2-7 SpringBoot常用注解讲解

Diviner0359
2018-05-05
既然@SpringBootApplication可以替代
@EnableAutoConfiguration
@ComponentScan
@Configuration
这三个注解为什么还要写@EnableAutoConfiguration这个注解呢
写回答
1回答
-
你好,@SpringBootApplication确实包含了@EnableAutoConfiguration,单独这里,不写@EnableAutoConfiguration是可以的,这里为了讲解spring boot的注解就写了一下。
这里需要注意的是,@SpringBootApplication虽然引入了其他几个注解,但是都使用的他们的默认行为,稍微复杂的情景下,默认行为是不可以的,就需要单独引入个别注解,然后做些特殊的配置了
212018-05-07
相似问题