How to reload a properties file in Apache Camel 2.12?
问题 I want to do two things: Load a properties into a bean and update the bean when properties is updated. I use JBoss Fuse 6.1 where to install my application bundle and have a properties file on the server where I need to read some configuration. The properties have the follow line: mediaTypeList=JSON,DOCX,TXT And I have a Java Bean that is a mirror of the file property: public class MediatType { private List<String> mediaTypeList; // GETTERs and SETTERs } The property mediaTypeList indicate