我正在做这样的注释
@Foo(resource="${foo.bar}")
然后,我放入application.properties
文件。
foo.bar=abcd
最后,我进行了注释处理。我用SystemPropertyUtils.resolvePlaceholders
替换了${...}
中的application.properties
String bar = SystemPropertyUtils.resolvePlaceholders("${foo.bar}");
但是,我无法获得价值abcd
。
abcd
从application.properties
获得值SystemPropertyUtils.resolvePlaceholders
?application.properties
的值并替换${...}
代码?谢谢