`
yjshengshe
  • 浏览: 204530 次
  • 性别: Icon_minigender_1
  • 来自: 南京
社区版块
存档分类
最新评论

struts2配置和Java国际化和JS国际化

阅读更多

1 WebContent/WEB-INF/web.xml配置文件

 

 

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
	http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
	<welcome-file-list>
		<welcome-file>index.jsp</welcome-file>
	</welcome-file-list>

	<filter>
		<filter-name>struts2</filter-name>
		<filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>
	</filter>
	<filter-mapping>
		<filter-name>struts2</filter-name>
		<url-pattern>/*</url-pattern>
	</filter-mapping>
	
	<filter>
    	<filter-name>struts-cleanup</filter-name>
    	<filter-class>org.apache.struts2.dispatcher.ActionContextCleanUp</filter-class>
  	</filter>
  	
  	<filter-mapping>
    	<filter-name>struts-cleanup</filter-name>
    	<url-pattern>/*</url-pattern>
  	</filter-mapping>

</web-app>

 

 

2 src/struts.xml 

 

 

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.1//EN" "struts-2.1.dtd" >
<struts>
	<!--
		用于标示struts的国际化,规定国际化文件要以globalMessage做为开头,如:“globalMessage_zh_CN.properties”。
		
		以下说明为有精力的同学看(可以不看):
		也可以不要这行代码,采取属性文件的方式。具体做法是:先删除这行代码,然后在项目的src下
		建一个属性文件,名为struts.properties(注:必须取这个名字),在属性文件中键入:
		struts.custom.i18n.resources=globalMessage保存即可。
		这个等号后面的"globalMessage"是随意取的,只要取的名字与国际化属性文件的名字
		相对应即可,例如:若写"struts.custom.i18n.resources=Myi18n"那么国际化文件
		的名字就要以Myi18n开头,如中文国际化属性文件名字就应该为"Myi18n_zh_CN.properties".
	-->
	<!-- value=message.globalMessage 对应着 资源文件路径 src/message/globalMessage*.properties -->
	<constant name="struts.custom.i18n.resources" value="message.globalMessage"></constant>

	<!-- 对应com.test.action包中的loginAction类 -->
	<package name="test" namespace="/" extends="struts-default">
		<action name="loginAction" class="com.test.action.LoginAction">
			<result name="success">welcome.jsp</result>
			<result name="login">login.jsp</result>
		</action>
	</package>
</struts>

 

 

3 JAVA国际化资源配置 src/message/

 

   globalMessage_en_US.properties

 

 

login.title=login title
login.firstname=firstname
login.lastname=lastname
login.age=age
login.submit=submit
login.info=please write {0} and {1}
login.welcome=welcome you

 

 

   globalMessage_zh_CN.properties

 

 

login.title=用户登录
login.firstname=姓
login.lastname=名
login.age=年龄
login.submit=提交
login.info=请输入 {0}和{1}
login.welcome=欢迎你

 

 

4 JS国际化 WebContent/js/locale

 

   jsLocale.jsp js资源加载jsp

 

 

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Insert title here</title>

<script type="text/javascript" src="<%=request.getContextPath() %>/js/locale/locale_<%=request.getLocale().toString() %>.js"></script>

<script type="text/javascript">
	//js key获取函数
	function getJsLocale(key)
	{
		if (typeof(jsLocale) != 'undefined')
		{
			if (typeof(jsLocale[key]) != 'undefined')
			{
				return jsLocale[key];
			}
			else
			{
				return key;
			}				
		}
		else
		{
			return key;
		};
	}
</script>

</head>
<body>

</body>
</html>

 

 

   locale_en_US.js

 

 

var jsLocale = 
{
	name : "sky",
	sex  : "man",
	info : "locale from js"
};
 

   locale_zh_CN.js

 

 

var jsLocale = 
{
	name : "李晓峰",
	sex  : "男",
	info : "js国际化"
};

 

  5 后台登陆action

 

   LoginAction

 

package com.test.action;

import java.text.MessageFormat;
import java.util.Locale;
import java.util.ResourceBundle;

import javax.servlet.http.HttpServletRequest;

import org.apache.struts2.ServletActionContext;

import com.opensymphony.xwork2.ActionContext;
import com.opensymphony.xwork2.ActionSupport;

/**
 * 
 * <一句话功能简述>
 * <功能详细描述>
 * 
 * @author  姓名 工号
 * @version  [版本号, 2012-10-9]
 * @see  [相关类/方法]
 * @since  [产品/模块版本]
 */
public class LoginAction extends ActionSupport
{

	@Override
	public String execute() throws Exception
	{
		// TODO Auto-generated method stub
		return super.execute();
	}
	
	/**
	 * 
	 * 手动转换Locale
	 * @return
	 * @throws Exception
	 * @see [类、类#方法、类#成员]
	 */
	public String i18n() throws Exception 
	{
		HttpServletRequest request = ServletActionContext.getRequest();
		String language = request.getParameter("language");
		String country = request.getParameter("country");
		
		Locale locale = new Locale(language, country);
		ActionContext.getContext().setLocale(locale);
		
		getResource();
		
		return "login";
	}
	
	/**
	 * 测试手动获取资源
	 * @see [类、类#方法、类#成员]
	 */
	public void getResource()
	{
		Locale locale = new Locale("zh","CN");
		ResourceBundle bundle = ResourceBundle.getBundle("message.globalMessage",locale);
		String name = bundle.getString("login.submit");
		String name1 = bundle.getString("login.info");
		
		Object[] os = {"infi","th000"};
		
		String name11 = MessageFormat.format(name1, os);
		
		String name3 = getText("name");
		System.out.println(name);
		System.out.println(name11);
		System.out.println(name3);
	}
}

 

 

  6 国际化测试JSP页面 login.jsp

 

 

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<%
	String path = request.getContextPath();
	String basePath = request.getScheme() + "://"
			+ request.getServerName() + ":" + request.getServerPort()
			+ path + "/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
	<head>
		<title><s:text name="login.title"></s:text></title>
	</head>
	<body>
		<s:text name="login.title"></s:text>
		
		<br>
		<hr />
		<!-- 下面是手动地点击想要的语言。其中规定了,超联接要提交到的方法(i18n),提交时一起传入相应的语言及国家的代码值 -->
		<a href="<%=path%>/loginAction!i18n.action?language=en&country=US">English</a>|
		<a href="<%=path%>/loginAction!i18n.action?language=zh&country=CN">中文</a>
		<br>

		<!-- 以下代码中label="%{getText('login.firstname')}"是读取属性文件(如:globalMessage_en_US.properties)中的名为"login.firstname"的属性的值。 -->
		<form action="<%=path%>/loginAction" method="post">
			<table align="left">
				<s:textfield name="firstname" label="%{getText('login.firstname')}"></s:textfield>
				<s:textfield name="lastname" label="%{getText('login.lastname')}"></s:textfield>
				<s:textfield name="age" label="%{getText('login.age')}"></s:textfield>
				<s:submit value="%{getText('login.submit')}"></s:submit>			
				<s:text name="login.info">
					<s:param value="%{getText('login.firstname')}"/>
					<s:param value="%{getText('login.lastname')}"/>
				</s:text>			
			</table>
		</form>
	</body>
</html>

 

   7 国际化测试页面 java国际化 + js国际化

 

    welcome.jsp

 

 

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<%
	String path = request.getContextPath();
	String basePath = request.getScheme() + "://"
			+ request.getServerName() + ":" + request.getServerPort()
			+ path + "/";
			
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
	<head>
		<title><s:text name="login.welcome"></s:text></title>
		<jsp:include page="/js/locale/jsLocale.jsp" />
		<script type="text/javascript">
			function init()
			{
				document.getElementById("locale").innerHTML = getJsLocale("info");
			}
		</script>
	</head>
	<body onload="init()">		
		<s:text name="login.welcome"></s:text>
		<div id="locale"></div>
	</body>
</html>

 

   8 strut2 架包

 

   commons-fileupload-1.2.1.jar

   commons-io-1.3.2.jar

   commons-logging-1.1.jar

   freemarker-2.3.13.jar

   junit-3.8.1.jar

   ognl-2.6.11.jar

   servlet-api.jar

   struts2-core-2.1.6.jar

   xwork-2.1.2.jar

 

 

分享到:
评论

相关推荐

    struts2数据验证与国际化

    Struts2引入了自己的数据验证机制,这使得验证过程更加系统化和模块化。 Struts2的数据验证主要分为两种类型:Action验证和ActionForm验证。Action验证是在Action类中直接进行的,通过对Action中的方法进行逻辑判断...

    Struts2的Java专题学习网

    7. **国际化(i18n)支持**:Struts2提供了国际化的支持,你可以创建资源文件,根据用户的语言环境提供不同的显示内容。 8. **Ajax支持**:Struts2可以很方便地与jQuery或其他JavaScript库结合,实现部分页面刷新,...

    struts2语言国际化

    以下是对Struts2语言国际化配置和使用的详细讲解。 一、准备工作 在开始之前,确保你的项目已经集成了Struts2框架。如果你还没有集成,需要在项目的`pom.xml`或者`build.gradle`文件中添加Struts2的依赖。Struts2的...

    EXTJS4+STRUTS2+JAVA增删改查

    同时,需要在EXTJS4中设置适当的proxy,如Ajax proxy,指定URL到STRUTS2 ACTION,并定义对应的读者(reader)和写入者(writer)来处理数据的序列化和反序列化。 这个例子为初学者提供了一个很好的起点,了解EXTJS4...

    STRUTS2+JavaScript 的分页,而且国际化

    在IT行业中,分页和国际化是两个非常重要的概念,尤其在构建大型Web应用程序时。STRUTS2作为一款流行的Java Web框架,提供了强大的功能来处理这些需求。JavaScript则在前端提供交互性和用户体验的提升。接下来,我们...

    Struts2源码和标签使用和配置

    Struts2是一个强大的Java web应用程序框架,用于构建和部署MVC(模型-视图-控制器)模式的应用。它是在原有的Struts1的基础上发展起来的,提供了更高效、更灵活的架构设计,使得开发者能够更容易地控制请求处理流程...

    struts2所有jar包程序文件

    6. `struts2-dojo-plugin.jar`和`struts2-jquery-plugin.jar`:这两个是JavaScript库的插件,分别对应Dojo和jQuery,用于增强Web界面的交互性。 7. `struts2-json-plugin.jar`:这个插件支持JSON数据格式的输入和...

    用案例学Java Web整合开发:Java+Eclipse+Struts 2+Ajax

    Java Web整合开发是构建Web应用程序的关键技术,涵盖了Java语言、Eclipse集成开发环境(IDE)、Struts 2框架以及Ajax异步JavaScript和XML技术。这个主题深入探讨了这些技术如何协同工作,创建出高效、用户友好的Web...

    java+struts2实现图表显示

    本教程将详细介绍如何使用Java和Struts2框架来实现在网页上显示各种图表,如折线图、柱状图和饼状图。 首先,我们需要引入图表库。常见的Java图表库有JFreeChart和Chart.js等。在这个案例中,我们可能使用...

    struts2项目部署

    - `web.xml`:这是Servlet配置文件,用于配置Struts2的核心过滤器和其他web应用组件。 - `struts.xml`:Struts2的配置文件,定义了Action、结果类型、拦截器等。 3. **lib目录**:包含所有必要的库文件,包括...

    java javaee struts2 spring hibernate免费学习视频教程

    根据提供的标题、描述、标签及部分内容,我们可以总结出以下与...以上是根据提供的链接和描述总结出的关于Java、Java EE、Struts2、Spring、Hibernate等技术的学习知识点概览,希望能帮助到正在学习这些技术的读者。

    java struts2 文件上传 支持大文件

    Java Struts2 文件上传是Java Web开发中常见的一项功能,特别是在处理大文件时,需要考虑性能和用户体验。Struts2框架提供了丰富的插件和配置来支持文件上传,其中包括进度条显示,以提升用户交互体验。以下是对这个...

    Struts2 Struts2 超好的Struts2 pdf 文档

    2. **配置**:Struts2的配置分为XML配置和注解配置两种方式。XML配置文件(struts.xml或struts-default.xml)用于定义Action、结果类型、拦截器栈等;注解配置则可以直接在Action类上标注,简化配置过程。 3. **...

    java-struts2

    Struts2是Java Web开发中一个非常重要的框架,它基于MVC(Model-View-Controller)设计模式,为开发者提供了一种结构化和可扩展的方式来构建动态网站应用程序。这个"java-struts2"的压缩包可能包含了Struts2框架的...

    用JavaScript,Struts2和MVC模式做增删改查

    总结起来,使用JavaScript、Struts2和MVC模式实现一个包含增删改查和图片上传功能的Web应用,涉及到的主要技术包括Struts2框架的配置和Action处理,MVC模式下的模型、视图、控制器设计,数据库操作的DAO和服务层,...

    struts2相关jar包

    此外,还可能包含其他插件和依赖,如用于Spring整合的`struts2-spring-plugin.jar`,以及各种国际化和验证相关的资源文件。 在实际开发中,开发者需要根据项目需求选择合适的jar包,并正确配置Struts2的配置文件...

    原创struts2讲义2.pdf

    web.xml是Web应用的部署描述符,它用于配置Struts2的核心过滤器FilterDispatcher以及其他相关的初始化参数。 ##### 3.2 配置struts.xml struts.xml是Struts2的核心配置文件,它定义了Action的映射关系以及所使用的...

    java struts2实现文件上传进度条显示

    在Java Struts2框架中实现文件上传进度条显示,主要涉及到的技术点包括Struts2的文件上传、Ajax异步通信以及前端进度条组件的使用。下面将详细讲解这些知识点。 首先,Struts2的文件上传功能是通过Struts2提供的`...

    Struts2——教程

    Struts2是一个基于MVC(Model-View-Controller)设计模式的Java web应用程序框架,它在Struts1的基础上进行了很多改进和增强,提供了更强大的功能和更好的性能。本教程将深入探讨Struts2的核心概念、架构以及实际...

Global site tag (gtag.js) - Google Analytics