我正在使用Wildfly的'smallrye'子系统来获取属性。
我想使用standalone.xml的默认配置源之一:
<config-source name="file-props">
<dir path="mp-configs" relative-to="jboss.server.config.dir"/>
</config-source>
或
<config-source name="example">
<property name="hello.world" value="heeeelo"/>
</config-source>
但是我想要动态行为(重新加载)。
这些属性是否支持动态重载?如果支持,如何在代码中使用它?
此外,那些“配置源”是否具有缓存? “ microprofile-config.xml”源是否缓存属性?