globalError get the message in ResourceBundleMessageSource Hi, In my form, I ve 2 date fields which I define a "From" date and a "To" date. When the user give a "From" ...
I'm using a mixture of JSP views and Xslt Views and need to support i18n throughout (meaning I can't simply use the spring:message tag). Is there a way to use ResourceBundleMessageSource ...
Hi, How does one make messages.properties accesible from JUnit tests? I have a /WEB-INF/classes/messages.properties file which is loaded from ResourceBundleMessageSource. In addition to standard business messages, I have audit messages in ...
In the API spec it states you can use an .xml file, aka messages.xml instead of a message.properties file with the bean ResourceBundleMessageSource. I have managed to make it work with ...
Hi Is it possible to have the message files for a ResourceBundleMessageSource somewhere else then under WEB-INF/classes? I have tried to put different basename values like: Code:
Odd behavior using ResourceBundleMessageSource with messages containing apostrophes I'm experiencing some strange behavior when fetching messages with apostrophes surrounding argument usage from a resource bundle using Spring's ResourceBundleMessageSource. Specifically, the apostrophes ...
ResourceBundleMessageSource returns message for missing locale Hi, I have a couple of exception properties files: exception_en.properties exception_fr.properties And I have a ResourceBundleMessageSource messageSource = new ResourceBundleMessageSource(); messageSource.setBasename("exception"); My problem is: String ...