1. 程式人生 > >springmvc國際化

springmvc國際化

關於國際化:

1. 在頁面上能夠根據瀏覽器語言設定的情況對文字(不是內容), 時間, 數值進行本地化處理

2. 可以在 bean 中獲取國際化資原始檔Locale 對應的訊息

3. 可以通過超連結切換 Locale, 而不再依賴於瀏覽器的語言設定情況

解決: (都首先要配置springmvc.xml的國際化資原始檔)

1. 使用 JSTL 的 fmt 標籤

2. 在 bean 中注入ResourceBundleMessageSource 的示例, 使用其對應的getMessage方法

3. 配置 LocalResolver 和 LocaleChangeInterceptor

1. 使用 JSTL 的 fmt 標籤

在i18n.jsp中使用 JSTL 的 fmt 標籤:<fmt:message key="i18n.user"></fmt:message>

在index.jsp中設定的連結:<a href="i18n">I18N PAGE</a>

在springmvc.xml中:

<bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource">

<property name="basename" value="i18n"></property>

</bean>

還可以設定直接跳轉到想要的介面,不需要handlers的介入

<mvc:view-controllerpath="/i18n" view-name="i18n"/>

2. 在handlers中

@Autowired

       privateResourceBundleMessageSource messageSource;

@RequestMapping("/i18n")

       publicString testI18n(Locale locale){

              String val = messageSource.getMessage("i18n.user", null, locale);

              System.out.println(val);   

      return "i18n";  

}

3. 在springmvc.xml中配置

 <!-- 配置 SessionLocalResolver -->

       <bean id="localeResolver" class="org.springframework.web.servlet.i18n.SessionLocaleResolver"></bean>

<!-- 配置 LocaleChanceInterceptor -->

<mvc:interceptors>

       <beanclass="org.springframework.web.servlet.i18n.LocaleChangeInterceptor"></bean>

</mvc:interceptors>

此外的超連結是:

<a href="i18n?locale=zh_CH">中文</a>

       <ahref="i18n?locale=en_US">英文</a>