gpt4 book ai didi

java - Spring Boot - 从 Application.properties 填充列表/集合?

转载 作者:搜寻专家 更新时间:2023-11-01 01:20:40 24 4
gpt4 key购买 nike

这可能是一个愚蠢的问题,但是否可以在 Spring Boot 中从 application.properties 文件填充列表。这是一个简单的例子:

public class SomeClass {
@Value("${hermes.api.excluded.jwt}")
private List<String> excludePatterns = new ArrayList<>();
// getters/settings ....
}

应用程序属性

// Is something along these lines possible????
hermes.api.excluded.jwt[0]=/api/auth/
hermes.api.excluded.jwt[1]=/api/ss/

我知道我可以分解一个逗号分隔的字符串,但我很好奇是否有原生的 spring boot 方法可以做到这一点?

最佳答案

事实证明它确实有效。但是,您似乎必须使用配置属性,因为简单的 @Value("${prop}") 似乎在幕后使用不同的路径。 (在 this secion 中有一些关于 DataBinder 的提示。不确定是否相关。)

application.properties

foo.bar[0]="a"
foo.bar[1]="b"
foo.bar[2]="c"
foo.bar[3]="d"

在代码中

@Component
@ConfigurationProperties(prefix="foo")
public static class Config {
private final List<String> bar = new ArrayList<String>();
public List<String> getBar() {
return bar;
}
}

@Component
public static class Test1 {
@Autowired public Test1(Config config) {
System.out.println("######## @ConfigProps " + config.bar);
}
}

结果

######## @ConfigProps ["a", "b", "c", "d"]

同时

@Component
public static class Test2 {
@Autowired public Test2(@Value("${foo.bar}") List<String> bar) {
System.out.println("######## @Value " + bar);
}
}

结果

java.lang.IllegalArgumentException: Could not resolve placeholder 'foo.bar' in string value "${foo.bar}"
at org.springframework.util.PropertyPlaceholderHelper.parseStringValue(...
...

关于java - Spring Boot - 从 Application.properties 填充列表/集合?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37552665/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com