Hello.
Is there any way of configuring spring security messages with localized messages using a org.springframework.web.servlet.i18n.LocaleChangeI nterceptor?
I mean, my internalizations works fine in general, using
Code:<mvc:interceptors> <bean id="localeChangeInterceptor" class="org.springframework.web.servlet.i18n.LocaleChangeInterceptor"> <property name="paramName" value="lang" /> </bean> </mvc:interceptors> <bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource"> <property name="basename" value="/WEB-INF/messages/messages"/> </bean>
But i canīt change security messages languaje as i do with my normal pages. It always takes into accout browser languaje. Is there any way of changging this behaviour?
Thanks in advance.


Reply With Quote