Property file not reflecting the modified changes using Apache Commons Configuration
问题 I am trying to explore Apache commons configuration to dynamically load the property file and do modification in the file and save it. I wrote a demo code for the same. Code Snippet package ABC; import org.apache.commons.configuration.ConfigurationException; import org.apache.commons.configuration.PropertiesConfiguration; import org.apache.commons.configuration.reloading.FileChangedReloadingStrategy; public class Prop { public static void main(String[] args) { try { URL propertiesURL = Prop