I want the property files changes to take effect without having to restart the jboss server.
My piece of code goes like this
import org.apache.commons.configuration.ConfigurationException;
import org.apache.commons.configuration.PropertiesConfiguration;
import org.apache.commons.configuration.reloading.FileChangedReloadingStrategy;
public class Myclass{
private static PropertiesConfiguration configure;
try {
configure = new PropertiesConfiguration("MyProperties.properties");
configure.setReloadingStrategy(new FileChangedReloadingStrategy());
configure.setAutoSave(true);
} catch (ConfigurationException e) {
e.printStackTrace();
}
}
But this is not working until i restart the server.
Can anyone plz help me out?
Thank you!!!
PropertiesConfiguration? As far as I know it's not part of the JDK... – home Nov 9 '11 at 6:38