所以我一直在关注以下教程....
http://viralpatel.net/blogs/spring-3-mvc-internationalization-i18n-localization-tutorial-example/
http://www.mkyong.com/spring-mvc/spring-mvc-internationalization-example/
想法!
通过点击特定语言并相应更新网页,我们的网页可以显示多种语言
计划!
使用spring的LocaleChangeInterceptor,LocaleResolver,HandlerMapping和MessageSource以及一些messages_xx.properties文件,我们根据指定的“lang”参数动态调用来自不同语言的消息。我们使用这些消息来调用 例如,如果“lang”= en,我们将转到messages_en.properties文件并获取label.message的消息。
设置问题!
我们在applicationContext.xml文件和web.xml文件中设置了所有弹簧“东西”(注意我是这个东西的业余爱好者)。我们还在其中一个.jsp文件中添加了。
问题!
当我们运行应用程序(使用TomCat服务器)时,它成功地在messages_en.properties文件中显示消息(在本例中为“hello”),但是,当我们尝试更改语言时,会出现相同的消息。 / p>
参考代码
的applicationContext.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ctx="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-2.5.xsd ">
<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>
<bean id="messageSource"
class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
<property name="basename" value="classpath:messages" />
<property name="defaultEncoding" value="UTF-8"/>
</bean>
示例:messages_en.properties
label.message = Hello
用于显示消息/更改语言的jsp片段
<%@ include file="/include.jsp"%>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
..............
<a href="?lang=en">English</a>|<a href="?lang=ar">Arabic</a>
<h3>
<spring:message code="label.message" text="default text" />
</h3>
..............
备注
我在代码中加了${pageContext.response.locale}
行,网页上的输出是“en_US”。即使在更改参数后(例如,在显示.....lang=ar
的网址中的位置)
它确实找到 messages_en.properties 文件并从该文件中获取消息并将其打印到网页,但只访问该文件并仅显示相应的消息。
我们正在使用spring v3.0.3(编辑:基于库文件,但它在xml文件中说2.5,所以我不知道),我们应该使用不同的版本或库吗?
< / LI>我认为是什么?
谢谢大家!我非常感谢任何帮助!
修改
我已经用<mvc:interceptors>
包围了“localeChangeInterceptor”,没有运气
如果您需要更多文件或代码,请询问!
答案 0 :(得分:0)
试试这个..
<bean id="viewResolver" class="org.springframework.web.servlet.view.ResourceBundleViewResolver" p:basename="messages" />
<bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
<property name="basename" value="classpath:messages" />
<property name="defaultEncoding" value="UTF-8" />
</bean>
<bean id="localeResolver" class="org.springframework.web.servlet.i18n.CookieLocaleResolver" />
答案 1 :(得分:0)
可重新加载的资源在这个上下文中没有帮助。添加一个mvc拦截器并通过扩展HandlerInterceptorAdapter来创建一个语言更改拦截器