Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个属性文件,我想将它转换为一个 java 对象,该对象将在所有流的 java 组件中使用。Mule CE 3.4中最好的方法是什么
将属性解析器添加到您的配置中。它主要在 applicationContext.xml 中完成。我不确定您的配置是否相同。
<context:property-placeholder location="classpath:yourfile.properties" />
然后,您的属性可以在注释的帮助下在您的 bean 中@Value解析。
@Value
@Value("${PropertyName}") private String propertyValue, //Setter getter