如何将application.properties转换为map。的application.yml

时间:2019-12-06 09:26:40

标签: java spring-boot maps yaml

我尝试了这个,但是行不通,我哪里出问题了?

application.properties(工作正常)

document-contact={name:'joe',email:'joe.bloggs@gmail.com'}

application.yml(不起作用;下面是stacktrace)

document-contact:
  name: 'joe'
  email: 'joe.bloggs@gmail.com'

Java:

    @Value("#{${document-contact}}")
    private Map<String, String> contact;

Stacktrace:

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'consolidatedSwaggerDocumentationController': Injection of autowired dependencies failed; nested exception is java.lang.IllegalArgumentException: Could not resolve placeholder 'document-contact' in value "#{${document-contact}}"
    at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:403) ~[spring-beans-5.2.0.RELEASE.jar:5.2.0.RELEASE]
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1429) ~[spring-beans-5.2.0.RELEASE.jar:5.2.0.RELEASE]
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:594) ~[spring-beans-5.2.0.RELEASE.jar:5.2.0.RELEASE]

2 个答案:

答案 0 :(得分:2)

您需要使用以下命令:

tes:
  maps:
    key1: 15
    key2: 2

而Java代码是:

@Data
@Component
@ConfigurationProperties(prefix = "tes")
public class MapTest {
    private Map<String, String> maps;
}

答案 1 :(得分:0)

您的application.yml不等同于您使用的application.properties

只有一个名为document-contract(= ${document-contract})的属性,而不是单独的属性,它包含以下 string

"{name:'joe',email:'joe.bloggs@gmail.com'}"

要将其转换为Map,请使用Spring Expression Language (SpEL)。这就是为什么您同时需要#{...}${...}的原因。

另一方面,您的application.yml文件没有名为document-contract的单个属性,因此它不起作用。如果您想在YAML中执行相同的操作,则应为:

document-contract: "{name: 'joe', email: 'joe.bloggs@gmail.com'}"

或者,如果您希望像以前一样使用多个YAML属性,则应注意@Value不支持Map结构。相反,您应该使用@ConfigurationProperties

@ConfigurationProperties(prefix = "app")
public class ApplicationProperties {
    private Map<String, String> documentContact;

    // Getters + Setters
}

使用@ConfigurationProperties时,您将不得不使用前缀,因此您应将YAML结构更改为:

app:
  document-contact:
    name: joe
    email: joe.bloggs@gmail.com

作为参考,这将是等效的属性文件:

app.document-contract.name=joe
app.document-contact.email=joe.bloggs@gmail.com