Spring 3 MVC: Internationalization & Localization Tutorial with Example
- By Viral Patel on July 14, 2010
Welcome to Part 5 for Spring 3.0 MVC Series. In previous article we saw how to configure Tiles framework with Spring 3 MVC application. We used org.springframework.web.servlet.view.tiles2.TilesConfigurer class in bean definition to define the tiles configuration file. This divided our HelloWorld Spring MVC application in sections such as header, footer etc.
In this part we will discuss about Internationalization (I18N) and Localization (L10N) in Spring 3.0 MVC. We will add i18n support followed by l10n to our HelloWorld Spring application that we created in previous tutorials in this series. I strongly recommend you to go through previous articles and download the source code of our sample application.
Spring 3.0 MVC Series
- Part 1: Introduction to Spring 3.0 MVC framework
- Part 2: Create Hello World Application in Spring 3.0 MVC
- Part 3: Handling Forms in Spring 3.0 MVC
- Part 4: Spring 3 MVC Tiles Plugin Tutorial with Example in Eclipse
- Part 5: Spring 3 MVC Internationalization & Localization Tutorial with Example in Eclipse
- Part 6: Spring 3 MVC Themes in Spring-Tutorial with Example
- Part 7: Create Spring 3 MVC Hibernate 3 Example using Maven in Eclipse
- Spring 3 MVC Interceptor tutorial
- Spring MVC: Save / Retrieve BLOB object with Hibernate
- How to change spring-servlet.xml filename
- Spring MVC: Multiple Row Form Submit using List of Beans
- Spring 3 MVC – Autocomplete with JQuery & JSON example
- Spring MVC + FreeMarker (FTL) Integration example
- Spring MVC HashMap Form Integration example
- Spring MVC Multiple File Upload example
What is i18n and L10n?
In computing, internationalization and localization are means of adapting computer software to different languages and regional differences. Internationalization is the process of designing a software application so that it can be adapted to various languages and regions without engineering changes. Localization is the process of adapting internationalized software for a specific region or language by adding locale-specific components and translating text.
The terms are frequently abbreviated to the numeronyms i18n (where 18 stands for the number of letters between the first i and last n in internationalization) and L10n respectively, due to the length of the words. The capital L in L10n helps to distinguish it from the lowercase i in i18n.
Our Goal
Our goal is to add Internationalization and Localization support to our Spring MVC application. Once finished our app will look like.

We will add two languages support to our application: English and German. Depending on the locale setting of users browser, the appropriate language will be selected. Also user will be able to select the language from top-right corner of the application.
Message Resouces File
We will create two properties file which will contain all the messages to be displayed in the application. These files are kept in a source folder called “resources”. Create a source folder in your project by Right click on Project name > New > Source Folder and name it resources.

Create two files messages_en.properties and messages_de.properties in this folder and copy following content into it.
File: resources/messages_en.properties
label.firstname=First Name label.lastname=Last Name label.email=Email label.telephone=Telephone label.addcontact=Add Contact label.menu=Menu label.title=Contact Manager label.footer=© ViralPatel.net
File: resources/messages_de.properties
label.firstname=Vorname label.lastname=Familiename label.email=Email label.telephone=Telefon label.addcontact=Addieren Kontakt label.title=Kontakt Manager label.menu=Menü label.footer=© ViralPatel.net
Configuring Internationalization (i18n) / Localization (L10n) in Spring MVC
Now we have created message resource properties for our application. We need to declare these files in spring configuration file. We will use class org.springframework.context.support.ReloadableResourceBundleMessageSource to define the message resources.
Also, note that we will provide a feature where user will be able to select language for the application. This is implemented by using org.springframework.web.servlet.i18n.LocaleChangeInterceptor class. The LocaleChangeInterceptor class will intercept any changes in the locale. These changes are then saved in cookies for future request. org.springframework.web.servlet.i18n.CookieLocaleResolver class will be used to store the locale changes in cookies.
Add following code in the spring-servlet.xml file.
File:WebContent/WEB-INF/spring-servlet.xml
<bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource"> <property name="basename" value="classpath:messages" /> <property name="defaultEncoding" value="UTF-8"/> </bean> <bean id="localeChangeInterceptor" class="org.springframework.web.servlet.i18n.LocaleChangeInterceptor"> <property name="paramName" value="lang" /> </bean> <bean id="localeResolver" class="org.springframework.web.servlet.i18n.CookieLocaleResolver"> <property name="defaultLocale" value="en"/> </bean> <bean id="handlerMapping" class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping"> <property name="interceptors"> <ref bean="localeChangeInterceptor" /> </property> </bean>
Note that in above configuration we have defined basename property in messageSource bean to classpath:messages. By this, spring will identify that the message resource message_
Change the View – The JSPs
Now as we have created two message resources files and configured it in Spring MVC, we will use these messages in the JSP files. Open all the JSP files of our demo application and update with following code.
File:WebContent/WEB-INF/jsp/header.jsp
<%@taglib uri="http://www.springframework.org/tags" prefix="spring"%> <h3><spring:message code="label.title"/></h3> <span style="float: right"> <a href="?lang=en">en</a> | <a href="?lang=de">de</a> </span>
File:WebContent/WEB-INF/jsp/menu.jsp
<%@taglib uri="http://www.springframework.org/tags" prefix="spring"%> <p><spring:message code="label.menu"/></p>
File:WebContent/WEB-INF/jsp/footer.jsp
<%@taglib uri="http://www.springframework.org/tags" prefix="spring"%> <spring:message code="label.footer"/>
File:WebContent/WEB-INF/jsp/contact.jsp
<%@taglib uri="http://www.springframework.org/tags" prefix="spring"%> <%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%> <html> <head> <title>Spring 3 MVC Series - Contact Manager</title> </head> <body> <form:form method="post" action="addContact.html"> <table> <tr> <td><form:label path="firstname"><spring:message code="label.firstname"/></form:label></td> <td><form:input path="firstname" /></td> </tr> <tr> <td><form:label path="lastname"><spring:message code="label.lastname"/></form:label></td> <td><form:input path="lastname" /></td> </tr> <tr> <td><form:label path="lastname"><spring:message code="label.email"/></form:label></td> <td><form:input path="email" /></td> </tr> <tr> <td><form:label path="lastname"><spring:message code="label.telephone"/></form:label></td> <td><form:input path="telephone" /></td> </tr> <tr> <td colspan="2"> <input type="submit" value="<spring:message code="label.addcontact"/>"/> </td> </tr> </table> </form:form> </body> </html>
Note that in above JSP, we used <spring:message> tag to display the message from resource bundle.
One thing that we must note here is that in header.jsp file, we have specified two links to select language. The link sets a request parameter ?lang=LocaleChangeInterceptor interceptor and change the local accordingly. Also note that while configuring LocaleChangeInterceptor in spring-servlet.xml file, we have specified property “paramName” with value “lang”
<property name="paramName" value="lang" />
Thus the Spring framework will look for a parameter called “lang” from request.
That’s All Folks
That’s pretty much it
We just added Internationalization and Localization support to our demo Spring 3.0 MVC application. All you have to do is just execute the app in Eclipse. Press Alt + Shift + X, R.


Download Source Code
Click here to download Source Code (10.2kb)
Moving On
Today we saw how to add Internationalization i18n and Localization L10n support to Spring 3.0 based web application. We used LocaleChangeInterceptor to intercept the change in locale and ReloadableResourceBundleMessageSource class to add message resources properties. In the next part we will discuss Themes in Spring MVC and how to implement it. I hope you liked this article. Feel free to post your queries and comments in comment section.
Get our Articles via Email. Enter your email address.
My application is running on tomcat7. But this loads only the ‘en_US’ property file. After clicking on ‘de’ link, it does not load the relevant property files. Please help me.
I’ve been having the same problem. No errors, nothing!
I came across this (http://stackoverflow.com/questions/9400806/springs-localization-doesnt-switch-languages) which is identical to the problem we are having. Turns did the trick!
PS. in case you don’t need to store the preferred locale in a cookie you can always use SessionLocaleResolver.
Hope this helps!
Hello
I have got problem i need to have got my properties file in external folder (not in war file)
so what i need to do ?
example my file example_en.properties is on /usr/local/websites/example/properties/example_en.properits ??
I think that i must extends class : org.springframework.context.support.ReloadableResourceBundleMessages
but i havent got any idea how to do it
Thx @Matthew Cachia for your answer:
with
we can fix the problem
Hi,
Since you have a really great blog and I too found some of the most interesting starting points here itself, I would recommend you to also help people to solve the problem which they face while practicing out your tutorials. I dont see any reply to the above messages and I am also suffering with the same problem. Please suggest a fix for the above. I know its not a forum but some help would be appreciated.
Hi, I solved it replacing in the web.xml this two beans:
By this other subsection,
An to do it, you need add xmlns:mvc to the beans section. My beans sections it this:
Hi
I have same problem like many of you. After 2 hours found this link which help me.
For all of you who are using mvc:annotaion-driven … try this
http://stackoverflow.com/questions/8738680/how-to-change-multi-languages-with-spring-on-project-egovframework
… or who don’t lile long texts like me … there is a code for application-context.xml
Hello everyone!
Thank you, very good explanation!
But I have one question, can you imagine that our site has a lot of articles and we want to have translation for two languages. I think, text of all articles storing in messages_de.properties and messages_en.properties it’s very bad idea. So my question is, how is it possible to handle it in Spring MVC?
Thank you!
Doesn’t work for me
org.springframework.web.util.NestedServletException: Request processing failed; nested exception is org.apache.tiles.impl.CannotRenderException: ServletException including path ‘/WEB-INF/template/layout.jsp’.
It’s brilliant article.
Thanks a lot.
I would like to add just one more thing in order to make it happens:
<interceptors> <beans:ref bean="localeChangeInterceptor"/> </interceptors>Without this piece of code, it does not work for me.
Hello every one.
Even I got into same problem and tried every one’s approach. I am very new to spring framework.
Matthew Cachia: I could not find where i can fit servlet-context.xml in this demonstration.
Vadim Lotar: when i put this line into my spring-servlet.xml it just show error into configuration over tag.
Help required.
Hy,
thank you for the explanation
I have a question : how can i put this message into a confirmation box ? or alert ?
Hi, I have encountered problem with mapping to the controller when using
, since it can’t map to my controller with localjost:8080/Spot.
However, if this bean is commented, my
forwards properly to the controller
@Controller public class HelloWorldController { @RequestMapping(value = "/", method = RequestMethod.GET) public String handleRequest() { return "hello"; } }Ok, I guess I should read more carefully. I’va found a solution that adding
to the dispatcher-servlet.xml fixes the problem
how can i use springs internationalisation from a javascript..?
or is there a way to access .properties file contents from a javascript??
please help
Thankyou, Its working fine.but my requirement is I have to load the values in two hashMap variables from database table. How can we configure in the dispatcher servlet. Please help me