这可能是一个愚蠢的问题,但是否可以在 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 引导方式来做到这一点?
最佳答案
事实证明它确实有效。但是,您似乎必须使用配置属性,因为简单的 @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/