Yaml 配置对象列表到属性文件

Posted

技术标签:

【中文标题】Yaml 配置对象列表到属性文件【英文标题】:Yaml configuration list of objects to properties file 【发布时间】:2020-07-06 12:16:30 【问题描述】:

我正在尝试将以下用于 SAML2 安全性的 yaml 配置转换为等效的属性文件。

spring:
  security:
    saml2:
      relyingparty:
        registration:
          xyz:
            signing:
              credentials:
              - certificate-location: "classpath:saml/xyz.pem"
                private-key-location: "classpath:saml/xyz.key"
            identityprovider:
              entity-id: xyz
              sso-url: xyz.com
              verification: 
                credentials:
                - certificate-location: "classpath:saml/xyz.pem"

它包含列表,如何将其转换为属性并不明显。 我在网上找不到太多关于它的信息。

这部分配置文件配置如下类:

org.springframework.boot.autoconfigure.security.saml2.Saml2RelyingPartyProperties

来自 spring-boot-autoconfigure-2.2.5.RELEASE.jar。

【问题讨论】:

你能显示与这个yaml匹配的Java类吗 该类位于 saml2 库的深处。类名是:org.springframework.boot.autoconfigure.security.saml2.Saml2RelyingPartyProperties 【参考方案1】:

试试这个。这应该工作

spring.security.saml2.relyingparty.registration.xyz.signing.credentials[0].certificate-location=classpath:saml/xyz.pem
spring.security.saml2.relyingparty.registration.xyz.signing.credentials[0].private-key-location=classpath:saml/xyz.key
spring.security.saml2.relyingparty.registration.xyz.identityprovider.entity-id=xyz
spring.security.saml2.relyingparty.registration.xyz.identityprovider.sso-url=xyz.com
spring.security.saml2.relyingparty.registration.xyz.identityprovider.verification.credentials[0].certificate-location=classpath:saml/xyz.pem

【讨论】:

答案几乎是正确的。我对身份提供者名称进行了小幅更正并删除了引号。

以上是关于Yaml 配置对象列表到属性文件的主要内容,如果未能解决你的问题,请参考以下文章

将 Yaml 中的列表映射到 Spring Boot 中的对象列表

SpringBoot配置文件(热部署Properties和YAML自定义属性对象集合)

SpringBoot中yaml文件配置属性

现代配置指南——YAML 比 JSON 高级在哪

从yaml文件读取配置,然后修改配置,怎样更新到yaml文件

多个 Spring 配置文件的属性解析(yaml 配置)