I have been using the "ReloadableResourceBundleMessageSource" to load my message sources but it seems recently this has stopped working..
What I had before was:
but that was not finding any of my messages and so just to see what would happen, I switched it to the normal "ResourceBundleMessageSource" and it's working just fine.. So this snip of code does work:Code:<bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource"> <property name="basenames"> <list> <value>com/vodori/dolce/web/resources/applicationResources</value> </list> </property> <property name="useCodeAsDefaultMessage" value="false"/> <property name="cacheSeconds" value="3"/> </bean>
Code:<bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource"> <property name="basenames"> <list> <value>com/vodori/dolce/web/resources/applicationResources</value> </list> </property> <property name="useCodeAsDefaultMessage" value="false"/> </bean>


Reply With Quote
Thanks for the feedback - it is very important for us as we can't fix bugs we don't know about.
