我只是从Spring Boot 1.5.8迁移到2.0.0

我解决了大多数迁移错误,但对此一无所知:

@Configuration
public class LdapConfiguration {

    @Bean
    @ConfigurationProperties(prefix = "ldap")
    public LdapContextSource contextSource() {
        return new LdapContextSource();
    }

    @Bean(name = "ldapTemplate")
    public LdapTemplate ldapTemplate(ContextSource contextSource) {
        return new LdapTemplate(contextSource);
    }
}


我的自定义值(所有变量均为var env属性,这就是分隔符为“ _”的原因):

LDAP_URLS=ldaps://ldap-url.com:636/


错误:

Description:

Failed to bind properties under 'ldap.urls' to java.lang.String[]:

    Reason: Unable to get value for property urls

Action:

Update your application's configuration


看起来无法将我的字符串值ldap.urls绑定到String [],我尝试用逗号分隔属性中的2个值。

任何的想法 ?

最佳答案

由于某种原因,Spring Boot无法绑定到克隆的阵列。我提出了#12478,因为我认为这是2.0中新活页夹的回归。

编辑:自Spring Boot 2.0.1起已修复。

关于java - SpringBoot 2迁移ConfigurationProperties无法将属性绑定(bind)到String [],我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49276037/

10-10 23:20