18. 使用@SpringBootApplication注解
很多Spring Boot开发者经常使用@Configuration
,@EnableAutoConfiguration
,@ComponentScan
注解他们的main类,由于这些注解如此频繁地一块使用(特别是遵循以上最佳实践的时候),Spring Boot就提供了一个方便的@SpringBootApplication
注解作为代替。
@SpringBootApplication
注解等价于以默认属性使用@Configuration
,@EnableAutoConfiguration
和@ComponentScan
:
注 @SpringBootApplication
注解也提供了用于自定义@EnableAutoConfiguration
和@ComponentScan
属性的别名(aliases)。
最后更新于