Spring Boot配置处理器,前缀的重复@ConfigurationProperties定义

cma*_*ini 6 java spring spring-boot spring-boot-configuration

在Spring Boot应用程序中,我想使用@ConfigurationProperties具有相同前缀的注释来根据配置文件配置我的两个数据源.为什么Spring Boot配置处理器禁止它?gradle报告的错误是:

...
:compileJava ... error: Duplicate `@ConfigurationProperties` definition for prefix 'spring.datasource'
Run Code Online (Sandbox Code Playgroud)

笔记:

  • "Run As-> Spring Boot App"在STS中运行
  • 如果没有spring-boot-configuration-processor依赖,gradle构建工作(但会When using @ConfigurationProperties it is recommended to add 'spring-boot-configuration-processor' to your classpath to generate configuration metadata出现警告)

的build.gradle

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath("org.springframework.boot:spring-boot-gradle-plugin:1.5.6.RELEASE")
    }
}

apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'org.springframework.boot'

repositories {
    mavenCentral()
    maven { url "https://repository.jboss.org/nexus/content/repositories/releases" }
}

sourceCompatibility = 1.8
targetCompatibility = 1.8

dependencies {
    compile("org.springframework.boot:spring-boot-starter-data-jpa")
    compile 'org.springframework.boot:spring-boot-configuration-processor:1.5.4.RELEASE'
    compile("com.h2database:h2")
}
Run Code Online (Sandbox Code Playgroud)

application.properties

spring.datasource.driverClassName = org.h2.Driver
spring.datasource.username = sa
spring.datasource.password = sa
Run Code Online (Sandbox Code Playgroud)

hello.Application

@SpringBootApplication
public class Application {

    public static void main(final String[] args) {
        final SpringApplication app = new SpringApplication(Application.class);
        app.setAdditionalProfiles("prod");
        app.run();
    }

    @Bean
    @Profile("dev")
    @ConfigurationProperties("spring.datasource")
    public DataSource dataSourceDev() {
        return DataSourceBuilder
                .create()
                .url(generateDevUrl())
                .build();
    }

    @Bean
    @Profile("prod")
    @ConfigurationProperties("spring.datasource")
    public DataSource dataSourceProd() {
        return DataSourceBuilder
                .create()
                .url(generateProdUrl())
                .build();
    }

}
Run Code Online (Sandbox Code Playgroud)

提前致谢

ndr*_*one 1

我认为您对它的工作原理感到困惑。代码大部分应该保持不变。当您定义启动时加载哪个配置文件时,属性会发生变化。

应用程序-dev.properties

spring.datasource.driverClassName=org.h2.Driver
spring.datasource.username=sa
spring.datasource.password=sa
spring.datasource.url=
Run Code Online (Sandbox Code Playgroud)

应用程序产品属性

spring.datasource.driverClassName=org.h2.Driver
spring.datasource.username=sa
spring.datasource.password=sa
spring.datasource.url=
Run Code Online (Sandbox Code Playgroud)

并且只有一个 bean 设置数据源。