Spring Boot 中的自动配置功能根据条件将 bean 添加到我们的应用程序上下文中。例如,基于类路径上类的可用性或环境属性 bean 被启用或禁用。我们必须在我们的 Spring Boot 应用程序中应用
@EnableAutoConfiguration
或
@SpringBootApplicaiton
才能完成这项工作。要概览我们应用程序中所有具有正面和负面条件匹配的配置,我们可以使用
--debug
命令行选项。这将向 System.out 打印一份报告,其中包含完整的概述。我们可以检查为什么应用配置。
在以下 Gradle 构建文件中,我们将选项
--debug
添加到
bootRun
任务的
args
属性:
buildscript {
ext {
springBootVersion = '1.2.5.RELEASE'
}
repositories {
jcenter()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
apply plugin: 'groovy'
apply plugin: 'spring-boot'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
jcenter()
}
dependencies {
compile 'org.codehaus.groovy:groovy-all:2.4.4'
compile "org.springframework.boot:spring-boot-starter-actuator"
compile "org.springframework.boot:spring-boot-starter-groovy-templates"
compile "org.springframework.boot:spring-boot-starter-web"
runtime "com.h2database:h2"
testCompile "org.springframework.boot:spring-boot-starter-test"
}
bootRun {
// Use --debug option to print out
// auto-configuration report.
args '--debug'
}
让我们运行
bootRun
任务并检查输出(接下来显示的输出中省略了行):