Is there any mechanism to load the properties file from the file system in struts2
? I am coming up with a hot deployment mechanism. If I update the war file, it would be redeployed. I am able to reload properties file on the fly using
LocalizedTextUtil.clearDefaultResourceBundles();
LocalizedTextUtil.addDefaultResourceBundle("struts/resources");
but it would only look in the struts2
default location.
Any solution, hack, workaround is heartily welcomed.