【发布时间】: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