Hi,
I'm trying to use
properties.load(getResourceAsStream("properites.ini"))
to load the properties in my application. The problem I'm running against is that even after I've made a change to "properites.ini", I still get the old version of the file.
As far as I can tell getResourceAsStream caches the data somewhere, so the updates become not available till you restart the application.
Can anyone suggest how to disable this cache, or how to alternatively load properties? Shall I use a different class loader, which doesn't cache resources?
Thanks,