基于Session的国际化实现

本文介绍如何在Spring MVC项目中实现网站内容的国际化,包括配置多语言资源文件、设置本地化拦截器及切换语言的方法。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

如何将我们网站的其它内容(如菜单、标题等)做国际化处理呢?这就是本篇要将的内容—>国际化。

在项目的spring.xml文件添加的内容如下

<mvc:interceptors>  
<span style="white-space:pre">	</span><!-- 国际化操作拦截器 如果采用基于(请求/Session/Cookie)则必需配置 --> 
	<bean class="org.springframework.web.servlet.i18n.LocaleChangeInterceptor" />  
</mvc:interceptors>

在项目中的源文件夹resources中添加myproperties.properties、myproperties_zh_.properties、myproperties_en_.properties三个文件



下面是jsp页面的一些简单信息如下,仅仅是演示没考虑其他的:

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<%
	Locale name = (Locale) session.getAttribute("i18nlanguage");
	ResourceBundle myResourcesBundle = ResourceBundle.getBundle("myproperties",name);
%>
<body>
    <a href="${pageContext.request.contextPath}/index/findex.do?langType=en&page=Home">ENG</a> |
 <a href="${pageContext.request.contextPath}/index/findex.do?langType=zh&page=Home"><%=myResourcesBundle.getString("simplified")%></a>
</body>
</html>

后台Action层代码如下:

package com.zhidao.oms.index;

import java.util.Locale;

import javax.servlet.http.HttpServletRequest;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;

@Controller
@RequestMapping("/index")
public class IndexAction {
	
	
	@RequestMapping("/findex")
	public String Findex(HttpServletRequest request,@RequestParam String langType,String page){

	if(langType.equals("zh")){
            Locale locale = new Locale("zh", "CN"); 
            request.getSession().setAttribute("i18nlanguage",locale); 
        }
        else if(langType.equals("en")){
            Locale locale = new Locale("en", "US"); 
            request.getSession().setAttribute("i18nlanguage",locale);
        }else{
        	request.getSession().setAttribute("i18nlanguage",Locale.getDefault());
        }
		return "/front/"+page+".jsp";
	}
	
}

有关的效果图展示大家测试一下就好了!写的不好的地方希望大家批评指正。






评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值