ConfigurationProperties

ConfigurationProperties

Spring Boot具有许多很酷的功能。我最喜欢的一种是通过 @ConfigurationProperties 和相应的yml/properties文件的类型安全的配置机制。我正在编写一个通过Datastax Java驱动程序配置Cassandra连接的库。我想允许开发人员通过简单地编辑yml文件来配置ClusterSession对象。在 Spring 启动时这很容易。但我想允许他/他以这种方式配置多个连接。在PHP框架-Symfony中,它很简单:

doctrine:
  dbal:
    default_connection: default
    connections:
      default:
        driver:   "%database_driver%"
        host:     "%database_host%"
        port:     "%database_port%"
        dbname:   "%database_name%"
        user:     "%database_user%"
        password: "%database_password%"
        charset:  UTF8
      customer:
        driver:   "%database_driver2%"
        host:     "%database_host2%"
        port:     "%database_port2%"
        dbname:   "%database_name2%"
        user:     "%database_user2%"
        password: "%database_password2%"
        charset:  UTF8

(此代码段来自Symfony documentation)

是否可以在Spring-boot中使用ConfigurationProperties?我应该嵌套它们吗?

最佳答案

您实际上可以使用类型安全的嵌套ConfigurationProperties

@ConfigurationProperties
public class DatabaseProperties {

    private Connection primaryConnection;

    private Connection backupConnection;

    // getter, setter ...

    public static class Connection {

        private String host;

        // getter, setter ...

    }

}

现在,您可以设置属性primaryConnection.host

如果您不想使用内部类,则可以使用@NestedConfigurationProperty注释字段。
@ConfigurationProperties
public class DatabaseProperties {

    @NestedConfigurationProperty
    private Connection primaryConnection; // Connection is defined somewhere else

    @NestedConfigurationProperty
    private Connection backupConnection;

    // getter, setter ...

}

另请参见Reference GuideConfiguration Binding Docs

10-07 16:04