I am using following code to load resource from my project.
ResourceBundle props=ResourceBundle.getBundle("db");
This is loading fine. But after this loading i'm modifying the same file and trying to get the latest contents from the file. Again using the above code to load the same file is returning the old file content. I think its loading from cache. How can we reload this resource again?