【问题标题】:Spring configuration properties recursive typeSpring 配置属性递归类型
【发布时间】:2018-10-20 14:09:19
【问题描述】:

我正在尝试创建一个具有递归类的配置属性类,其结构类似于链表。我正在使用 Spring boot 2.0.6.RELEASE,并且该类正在使用 @EnableConfigurationProperties({EnginealConfig.class}) 自动装配。

我遇到的问题是只有一个第一级将绑定到 Test 对象,x.test 永远不会被设置。

使用以下 application.properties 文件:

engineal.x.value: "Test1"
engineal.x.test.value: "Test2"
engineal.x.test.test.value: "Test3"

以及如下配置属性类:

@ConfigurationProperties(prefix = "engineal")
public class EnginealConfig {

    static class Test {

        private String value;
        private Test test;

        public String getValue() {
            return value;
        }

        public void setValue(String value) {
            this.value = value;
        }

        public Test getTest() {
            return test;
        }

        public void setTest(Test test) {
            this.test = test;
        }

        @Override
        public String toString() {
            return "Test{" +
                    "value='" + value + '\'' +
                    ", test=" + test +
                    '}';
        }
    }

    private Test x;

    public Test getX() {
        return x;
    }

    public void setX(Test x) {
        this.x = x;
    }

    @Override
    public String toString() {
        return "EnginealConfig{" +
                "x=" + x +
                '}';
    }
}

对象将打印EnginealConfig{x=Test{value='Test1', test=null}}。不幸的是,递归不起作用。

在尝试了不同的方法以使其正常工作后,我尝试将 EnginealConfig#Test.test 从 private Test test; 更改为 private List<Test> test;,以及 getter 和 setter。然后通过使用一个元素的列表,这个递归就起作用了。

以下 application.properties 与 List<Test> 更改:

engineal.x.value: "Test1"
engineal.x.test[0].value: "Test2"
engineal.x.test[0].test[0].value: "Test3"

将输出EnginealConfig{x=Test{value='Test1', test=[Test{value='Test2', test=[Test{value='Test3', test=null}]}]}}。然后我可以使用test.get(0) 访问下一个元素。

因此,似乎只有当递归类型在集合中时才支持递归。

虽然这种解决方法没问题,但我更愿意使用我的第一种方法。是否/应该在不需要集合的情况下支持递归类?感谢您的帮助!

【问题讨论】:

  • 我相信这可以通过使用 custom converter (/w @ConfigurationPropertiesBinding) 来解决,但是 SpringBoot 2.x 目前忽略了带注释的对象,这里有一个相关的问题:github.com/spring-projects/spring-boot/issues/13285
  • This post 可以帮助你,看来你需要spring-configuration-metadata.json
  • 感谢您的评论@LuisMuñoz,但是,根据那篇文章和docs.spring.io/spring-boot/docs/current/reference/html/…,spring-configuration-metadata.json 似乎只会在 IDE 中提供自动完成功能;并且不会影响实际的配置绑定,这是我的问题所在。提到这一点,spring-boot-configuration-processor 会在我提供的示例类中引发 StackOverflowException,因此很明显它也无法处理这种递归结构。
  • 值得向 Spring 伙计们报告错误!

标签: java spring spring-boot


【解决方案1】:

只需将您的内部类设置为单独的类,然后一切都会正常工作。

application.yml

simple:
  value: aa
  myTest:
    value: lower

配置类

@ConfigurationProperties(prefix = "simple")
@Data //It is for getter setter
public class SimpleConfig {

    private String value;

    private MyTest myTest;
}

递归类

@Data
public class MyTest {
    private String value;
    private MyTest myTest;
}

测试用例

@Resource
private SimpleConfig simpleConfig;

@Test
public void myTest(){

    String value = simpleConfig.getValue();
    System.out.println("outerValue : " + value);
    String innerValue = simpleConfig.getMyTest().getValue();
    System.out.println("innerValue :" + innerValue);
}

结果

outerValue : aa
innerValue :lower

【讨论】:

  • 这仅适用于第一层。如果再添加一层(即:simple.myTest.myTest.value,所以实际上会有递归),Spring会检测到递归并为其赋值“null”。
  • 好吧,“分配空值”并不完全正确,但我想你知道我的意思。
  • 是的,我刚试过。就像你说的那样。但我想我找到了一种方法来重写一些东西
【解决方案2】:
@ConfigurationProperties(prefix = "engineal")
public class EnginealConfig {

    static class Test {
        //@NestedConfigurationProperty
        private String value;

        @NestedConfigurationProperty
        private Test test;

您可以使用@NestedConfigurationProperty 注释对该字段进行注释。

【讨论】:

  • 不幸的是,这个答案并没有解决问题。将 @NestedConfigurationProperty 添加到字段 EnginealConfig#Test.test 仍然会产生完全相同的配置:EnginealConfig{x=Test{value='Test1', test=null}}
  • 实际上在文档中声明“此注释与实际绑定过程无关”:docs.spring.io/spring-boot/docs/current/api/org/springframework/…
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 2014-04-18
  • 1970-01-01
  • 2019-04-24
  • 2017-12-10
  • 1970-01-01
  • 1970-01-01
  • 2012-12-31
相关资源
最近更新 更多