作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我知道您可以像这样使用占位符覆盖 yaml 配置值:
some-setting: ${SOME_SETTING:default value}
而且我知道您可以像这样表达对象列表:
customers:
- name: acme
category: manufacturing
employees: 200
- name: virtucon
category: evil
employees: 1
那么我该如何通过 ${} 占位符表示法来表达这样的列表呢?
最佳答案
您必须创建 ConfigurationProperties 才能读入属性对象。
@Component
@ConfigurationProperties("app")
public class AppProperties {
private List<Customer> customers = new ArrayList<>();
public static class Customer {
private String name;
private String category;
private int employees;
}
}
通常你也会在你的 .yml 文件中为此创建一个前缀
app:
customers:
- name: acme
category: manufacturing
employees: 200
- name: virtucon
category: evil
employees: 1
您现在可以在应用程序的任何位置自动连接此类。
关于spring - 如何通过 Spring 占位符在 yaml 中表达对象列表或数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53125019/
我是一名优秀的程序员,十分优秀!