本文为原创,如需转载,请注明作者和出处,谢谢!
在本系列教程中我们将学习到struts2
的各种技术。在本教程中使用的工具和程序库的版本如下:
开发工具:myeclipse6
web服务器:tomcat6
struts版本:struts2.0.11.1
jdk版本:jdk1.5.0_12
j2ee版本:java ee5.0
在本系列教程中web工程的上下文路径都是struts2,如果在web根目录有一个index.jsp文件,则访问路径如下:
http://localhost:8080/struts2/index.jsp
由于myeclipse6目前并不支持struts2,所以我们需要到struts.apache.org去下载struts2安装包。要想正常使用struts2,至少需要如下五个包(可能会因为struts2的版本不同,包名略有差异,但包名的前半部是一样的)。
struts2-core-2.0.11.1.jar
xwork-2.0.4.jar
commons-logging-1.0.4.jar
freemarker-2.3.8.jar
ognl-2.6.11.jar
struts2虽然在大版本号上是第二个版本,但基本上在配置和使用上已经完全颠覆了struts1.x的方式(当然,struts2仍然是基于mvc模式的,也是动作驱动的,可能这是唯一没变的东西)。struts2实际上是在webwork基础上构建起来的mvc框架。我们从struts2的源代码中可以看到,有很多都是直接使用的xwork(webwork的核心技术)的包。既然从技术上来说struts2是全新的框架,那么就让我们来学习一下这个新的框架的使用方法。
如果大家使用过struts1.x,应该对建立基于struts1.x的web程序的基本步骤非常清楚。让我们先来回顾一下建立基于struts1.x的web程序的基本步骤。
1. 安装struts。由于struts的入口点是actionservlet,所以得在web.xml中配置一下这个servlet。
2. 编写action类(一般从org.apache.struts.action.action类继承)。
3. 编写actionform类(一般从org.apache.struts.action.actionform类继承),这一步不是必须的,如果要接收客户端提交的数据,需要执行这一步。
4. 在struts-config.xml文件中配置action和actionform。
5. 如果要采集用户录入的数据,一般需要编写若干jsp页面,并通过这些jsp页面中的form将数据提交给action。
下面我们就按着编写struts1.x程序的这五步和struts2.x程序的编写过程一一对应,看看它们谁更“酷”。下面我们来编写一个基于struts2的web程序。这个程序的功能是让用户录入两个整数,并提交给一个struts action,并计算这两个数的代数和,如果代码和为非负数,则跳转到positive.jsp页面,否则跳转到negative.jsp页面。
【第1步】 安装struts2
这一步对于struts1.x和struts2都是必须的,只是安装的方法不同。struts1的入口点是一个servlet,而struts2的入口点是一个过滤器(filter)。因此,struts2要按过滤器的方式配置。下面是在web.xml中配置struts2的代码:
<filter>
<filter-name>struts2filter-name>
<filter-class>
org.apache.struts2.dispatcher.filterdispatcher
filter-class>
filter>
<filter-mapping>
<filter-name>struts2filter-name>
<url-pattern>/*url-pattern>
filter-mapping>
【第2步】 编写action类
这一步和struts1.x也必须进行。只是struts1.x中的动作类必须从action类中继承,而struts2.x的动作类需要从com.opensymphony.xwork2.actionsupport类继承。下面是计算两个整数代码和的action类,代码如下:
package action;
import com.opensymphony.xwork2.actionsupport;
public class firstaction extends actionsupport
{
private int operand1;
private int operand2;
public string execute() throws exception
{
if (getsum() >= 0) // 如果代码数和是非负整数,跳到positive.jsp页面
{
return "positive";
}
else // 如果代码数和是负整数,跳到negative.jsp页面
{
return "negative";
}
}
public int getoperand1()
{
return operand1;
}
public void setoperand1(int operand1)
{
system.out.println(operand1);
this.operand1 = operand1;
}
public int getoperand2()
{
return operand2;
}
public void setoperand2(int operand2)
{
system.out.println(operand2);
this.operand2 = operand2;
}
public int getsum()
{
return operand1 operand2; // 计算两个整数的代码数和
}
}
从上面的代码可以看出,动作类的一个特征就是要覆盖execute方法,只是struts2的execute方法没有参数了,而struts1.x的execute方法有四个参数。而且execute方法的返回值也不同的。struts2只返回一个string,用于表述执行结果(就是一个标志)。上面代码的其他部分将在下面讲解。
【第3步】 编写actionform类
在本例中当然需要使用actionform了。在struts1.x中,必须要单独建立一个actionform类(或是定义一个动作form),而在struts2中actionform和action已经二合一了。从第二步的代码可以看出,后面的部分就是应该写在actionform类中的内容。所以在第2步,本例的actionform类已经编写完成(就是action类的后半部分)。
【第4步】 配置action类
这一步struts1.x和struts2.x都是必须的,只是在struts1.x中的配置文件一般叫struts-config.xml(当然也可以是其他的文件名),而且一般放到web-inf目录中。而在struts2.x中的配置文件一般为struts.xml,放到web-inf"classes目录中。下面是在struts.xml中配置动作类的代码:
xml version="1.0" encoding="utf-8" ?>
doctype struts public
"-//apache software foundation//dtd struts configuration 2.0//en"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<package name="struts2" namespace="/mystruts"
extends="struts-default">
<action name="sum" class="action.firstaction">
<result name="positive">/positive.jspresult>
<result name="negative">/negative.jspresult>
action>
package>
struts>
在标签中可以有多个,第一个可以指定一个servlet访问路径(不包括动作名),如“/mystruts”。extends属性继承一个默认的配置文件“struts-default”,一般都继承于它,大家可以先不去管它。标签中的name属性表示动作名,class表示动作类名。
标签的name实际上就是execute方法返回的字符串,如果返回的是“positive”,就跳转到positive.jsp页面,如果是“negative”,就跳转到negative.jsp页面。在中可以有多个,在中可以有多个。我们可以用如下的url来访问这个动作:
http://localhost:8080/struts2/mystruts/sum.action
注:struts1.x的动作一般都以.do结尾,而struts2是以.action结尾。
【第5步】 编写用户录入接口(jsp页面)
1. 主界面(sum.jsp)
在web根目录建立一个sum.jsp,代码如下:
<%@ page language="java" import="java.util.*" pageencoding="gbk" %>
<%@ taglib prefix="s" uri="/struts-tags"%>
<html>
<head>
<title>输入操作数title>
head>
<body>
求代数和
<br/>
<s:form action="mystruts/sum.action" >
<s:textfield name="operand1" label=" 操作数1"/>
<s:textfield name="operand2" label=" 操作数2" />
<s:submit value="代数和" />
s:form>
body>
html>
在sum.jsp中使用了struts2带的tag。在struts2中已经将struts1.x的好几个标签库都统一了,在struts2中只有一个标签库/struts-tags。这里面包含了所有的struts2标签。但使用struts2的标签大家要注意一下。在中最好都使用struts2标签,尽量不要用html或普通文本,大家可以将sum.jsp的代码改为如下的形式,看看会出现什么效果:
... ...
求代数和
操作数1:
操作数2:
代数和" />
... ...
提示一下,在中struts2使用定位。
2. positive.jsp
<%@ page language="java" import="java.util.*" pageencoding="gbk"%>
<%@ taglib prefix="s" uri="/struts-tags" %>
<html>
<head>
<title>显示代数和title>
head>
<body>
代数和为非负整数<h1><s:property value="sum" />h1>
body>
html>
3. negative.jsp
<%@ page language="java" import="java.util.*" pageencoding="gbk"%>
<%@ taglib prefix="s" uri="/struts-tags" %>
<html>
<head>
<title>显示代数和title>
head>
<body>
代数和为负整数<h1><s:property value="sum" />h1>
body>
html>
这两个jsp页面的实现代码基本一样,只使用了一个标签来显示action类中的sum属性值。标签是从request对象中获得了一个对象中得到的sum属性,如我们可以使用如下的代码来代替:
<%
com.opensymphony.xwork2.util.ognlvaluestack ovs =
(com.opensymphony.xwork2.util.ognlvaluestack)request.getattribute("struts.valuestack");
out.println(ovs.findstring("sum"));
%>
启动tomcat后,在ie中输入如下的url来测试这个例子:
http://localhost:8080/struts2/sum.jsp
下一篇:struts2教程2:处理一个form多个submit
《android开发完全讲义(第2版)》(本书凯发k8网页登录的版权已输出到台湾)
《android高薪之路:android程序员面试宝典 》
新浪微博: 昵称:李宁_lining