I am using JSF2.0 and Glassfish v3.

I have a ValidatorMessage.properties file under WEB-INF>Classes folder of my project.

When I make any changes to messages in this file, through my project, its changes are not reflected.

I access this messages through <f:loadBundle var="msg" basename="ValidationMessages"/>

Are there any configurations to be made in Glassfish or my project side?

P.S.-> the same functionality works under Jetty 7.0.0pre3

Please comment if question is not clear..

link|improve this question

how do you reload your ResourceBundle? – Jigar Joshi Dec 17 '10 at 8:28
@org.life.java- I clear the cacheList of the ResouceBundle, assuming loadbundle to reload when found null. As the way described here. stackoverflow.com/questions/2047891/… – niksvp Dec 17 '10 at 13:24
1  
Issues with properties being changed requiring a server restart comes down to reload of resource bundle as mentioned in comments above I had similar issue was solved here stackoverflow.com/questions/6660117/… – Shahzeb Jul 17 '11 at 23:53
feedback

1 Answer

up vote 1 down vote accepted

There is no need to restart the server when you make change in a properties file. I often do changes in my files for internationalization and i don't need to restart.

I don't know what IDE do you use, but i use eclipse and there i have an option when i double click on Glassfish application server to automatically publish when changes are detected(See image below). I think that is what you are looking for.

enter image description here

Also there is a podcast from oracle that mentions it(time 2.04)

http://www.youtube.com/watch?v=ppGqtOeHm-g&feature=related

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.