小编典典

Spring Boot-嵌套ConfigurationProperties

spring-boot

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

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


阅读 1047

收藏
2020-05-30

共1个答案

小编典典

您实际上可以使用类型安全的nested 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 ...

}

另请参阅《参考指南配置绑定文档》

2020-05-30