Struts介绍:
Struts2是在WebWork2基础发展而来的。和struts1一样, Struts2也属于MVC框架。不过有一点大家需要注意的是:尽管Struts2和struts1在名字上的差别不是很大,但Struts2和struts1在代码编写风格上几乎是不一样的。那么既然有了struts1,为何还要推出struts2。主要是因为struts2有以下优点:
1 > 在软件设计上Struts2没有像struts1那样跟Servlet API和struts API有着紧密的耦合,Struts2的应用可以不依赖于Servlet API和struts API。 Struts2的这种设计属于无侵入式设计,而Struts1却属于侵入式设计。
public class OrderListAction extends Action {
public ActionForward execute(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response) throws Exception {
}
}
2> Struts2提供了拦截器,利用拦截器可以进行AOP编程,实现如权限拦截等功能。
3> Strut2提供了类型转换器,我们可以把特殊的请求参数转换成需要的类型。在Struts1中,如果我们要实现同样的功能,就必须向Struts1的底层实现BeanUtil注册类型转换器才行。
4> Struts2提供支持多种表现层技术,如:JSP、freeMarker、Velocity等
5> Struts2的输入校验可以对指定方法进行校验,解决了Struts1长久之痛。
6> 提供了全局范围、包范围和Action范围的国际化资源文件管理实现
使用的软件为eclispe,版本如下所示:
struts2版本为
搭建Struts2环境需要如下3个步骤:
1、找到Struts2框架需要用到的jar文件;
2、编写Struts2的配置文件(struts.xml);
3、在web.xml中加入Struts2MVC框架启动配置。
首先是第一步,这里所有的jar包可以从struts2.3.16文件的apps复制到项目的lib文件夹下。
struts2-core-2.x.x.jar :Struts 2框架的核心类库
xwork-core-2.x.x.jar :XWork类库,Struts 2在其上构建
ognl-2.6.x.jar :对象图导航语言(Object Graph Navigation Language),
struts2框架通过其读写对象的属性
freemarker-2.3.x.jar :Struts 2的UI标签的模板使用FreeMarker编写
commons-logging-1.x.x.jar :ASF出品的日志包,Struts 2框架使用这个日志包
来支持Log4J和JDK 1.4+的日志记录。
commons-fileupload-1.2.1.jar 文件上传组件,2.1.6版本后必须加入此文件
2、编写Struts2的配置文件(struts.xml),可以从apps中的例子进行拷贝并修改:
注意:struts2读取到struts.xml的内容后,以javabean形式存放在内存中,以后
struts2对用户的每次请求处理将使用内存中的数据,而不是每次都读取
struts.xml文件。
struts.xml代码:
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN" "http://struts.apache.org/dtds/struts-2.3.dtd"> <struts> <package name="itcast" namespace="/test" extends="struts-default"> <action name="helloworld" class="cn.itcast.action.HelloWorldAction" method="execute"> <result name="success">/WEB-INF/page/hello.jsp</result> </action> </package> </struts>
3、在web.xml中加入Struts2MVC框架启动配置:
web.xml代码:
<?xml version="1.0" encoding="UTF-8"?> <web-app id="WebApp_9" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"> <filter> <filter-name>struts2</filter-name> <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class> </filter> <filter-mapping> <filter-name>struts2</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> </web-app>
完成以上三步之后,运行Tomcat服务器,若Console无错误信息,则基本的Struts2框架搭建完成。
接下来为Struts2应用添加一一个jsp文件和一个action:
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> <body> <!--使用EL表达式输入Msg的内容--> <h1>${Msg}</h1> </body> </html>
对于Struts2应用的开发者来说,Action才是应用的核心,开发者需要提供大量的Action类,并在strurts.xml文件中配置Action。Action类里包含了对用户请求的处理逻辑,Action类也被称为业务控制器。Struts2不要求Action类继承任何的Struts2基类,或者实现任何Struts2接口。在这种设计方式下,Struts2的Action类是一个普通的POJO(通常应该包含一个无参数的excute方法),从而有很好的代码复用性。
Struts2通常直接使用Action类来封装HTTP请求参数,因此,Action类里还应该包含与请求参数对应的实例变量,并且为这些实例变量提供对应的setter和getter方法。
action类代码:
package cn.itcast.action; public class HelloWorldAction { private String msg; public String getMsg() { return msg; //jsp页面中使用EL表达式${Msg}就会调用getMsg方法,而该方法返回msg的内容。 } public String execute(){ msg="我的第一个struts2应用"; return "success"; //execute方法返回success。 } }
将项目发布到Tomcat服务器运行,打开浏览器,在地址栏输入:localhost:8888/Struts2/test/helloworld.action,则会显示jsp的信息。
或者不加.action也可以访问:
在struts1中,通过<action path=“/test/helloworld”>节点的path属性指定访
问该action的URL路径。在struts2中,情况就不是这样了,访问struts2中action
的URL路径由两部份组成:包的命名空间+action的名称,例如访问本例子
HelloWorldAction的URL路径为:/test/helloworld (注意:完整路径为:
http://localhost:端口/内容路径/test/helloworld)。另外我们也可以加
上.action后缀访问此Action。
<package name="itcast" namespace="/test" extends="struts-default"> <action name="helloworld" class="cn.itcast.action.HelloWorldAction" method="execute" > <result name="success">/WEB-INF/page/hello.jsp</result> </action> </package>
对上面的代码进行说明:
包的名空间是/test,action类的名字为helloworld,class是包和action类的路径。
通常每个包都应该继承struts-default包, 因为Struts2很多核心的功能都是拦截器来实现。如:从请求中把请求参数封装到action、文件上传和数据验证等等都是通过拦截器实现的。struts-default定义了这些拦截器和Result类型。可以这么说:当包继承了struts-default才能使用struts2提供的核心功能。 struts-default包是在struts2-core-2.x.x.jar文件中的struts-default.xml中定义。struts-default.xml也是Struts2默认配置文件。 Struts2每次都会自动加载struts-default.xml文件。
当HelloWorldAction执行execute()方法得到的结果(result)为success时,系统将会使用/WEB-INF/page/hello.jsp页面作为视图资源。
整个项目的结构如下图所示: