Update 18. Using the @SpringBootApplication annotation.md

master
qibaoguang 2015-05-16 10:15:35 +08:00
parent 3e8a18e98a
commit 40ae0e3ccc
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
### 18. 使用@SpringBootApplication注解 ### 18. 使用@SpringBootApplication注解
很多Spring Boot开发者总是使用`@Configuration``@EnableAutoConfiguration`和`@ComponentScan`注解他们的main类。由于这些注解被如此频繁地一块使用特别是你遵循以上[最佳实践](http://docs.spring.io/spring-boot/docs/current-SNAPSHOT/reference/htmlsingle/#using-boot-structuring-your-code)时Spring Boot提供一个方便的`@SpringBootApplication`选择。 很多Spring Boot开发者总是使用`@Configuration``@EnableAutoConfiguration`和`@ComponentScan`注解他们的main类。由于这些注解被如此频繁地一块使用特别是你遵循以上[最佳实践](14. Structuring your code.md)时Spring Boot提供一个方便的`@SpringBootApplication`选择。
该`@SpringBootApplication`注解等价于以默认属性使用`@Configuration``@EnableAutoConfiguration`和`@ComponentScan`。 该`@SpringBootApplication`注解等价于以默认属性使用`@Configuration``@EnableAutoConfiguration`和`@ComponentScan`。
```java ```java