Update 16. Auto-configuration.md

master
qibaoguang 2015-03-20 00:38:51 +08:00
parent 45172a5db6
commit 4292fcfba6
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
### 16. 自动配置
Spring Boot自动配置auto-configuration尝试根据你添加的jar依赖自动配置你的Spring应用。例如如果你的classpath下存在`HSQLDB`并且你没有手动配置任何数据库连接beans那么我们将自动配置一个内存型in-memory数据库。
你可以通过将`@EnableAutoConfiguration`或`@SpringBootApplication`注解添加到一个`@Configuration`类上来选择自动配置。
**注**:你只需要添加一个`@EnableAutoConfiguration`注解。我们建议你将它添加到主`@Configuration`类上。