说明:本笔记内容只是struts2初级使用,是对网络上《struts2入门教程》教程学习的总结内容。
1.简单介绍
(1)在软件设计上Struts2没有像struts1那样跟Servlet API和struts API有着紧密的耦合,Struts2的应用可以不依赖于Servlet API和struts API。 Struts2的这种设计属于无侵入式设计,而Struts1却属于侵入式设计。
(2)sturts2提供了拦截器,基于拦截器可以进行AOP编程,并实现权限拦截
(3)Strut2提供了类型转换器,我们可以把特殊的请求参数转换成需要的类型。
(4)Struts2提供支持多种表现层技术,如:JSP、freeMarker、Velocity等
(5)Struts2的输入校验可以对指定方法进行校验
(6)提供了全局范围、包范围和Action范围的国际化资源文件管理实现
2.struts2.3.4使用的jar包:
(1)struts2-core-2.x.x.jar :Struts 2框架的核心类库
(2)xwork-core-2.x.x.jar :XWork类库,Struts 2在其上构建
(3)ognl-3.x.x.jar :对象图导航语言(Object Graph Navigation Language),struts2框架通过其读写对象的属性
(4)freemarker-2.3.x.jar :Struts 2的UI标签的模板使用FreeMarker编写
(5)commons-logging-1.x.x.jar :ASF出品的日志包,Struts 2框架使用这个日志包来支持Log4J和JDK 1.4+的日志记录。
(6)commons-fileupload-1.2.1.jar 文件上传组件,2.1.6版本后必须加入此文件
(7)commons-io-2.0.1.jar 新版本的fileupload也必须加入此包
(8)commons-lang3-3.1.jar
(9)javassist-3.11.0.GA.jar
3.第一个简单的struts2编写
struts1.x是通过Servlet启动的。在struts2中,struts2框架是通过Filter启动的。在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">
<display-name>Struts2 Demo</display-name>
<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>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>
StrutsPrepareAndExecuteFilter的Init()方法将会读取类路径下的默认的配置文件struts.xml完成初始话操作。
struts2读取到struts.xml中的内容后,以javaBean的形式存放在内容中,以后struts2对用户的每次请求时使用内存中的数据,不再解析struts.xml文件!
struts2.xml内容
struts2的默认配置文件为struts.xml ,该文件需要存放在/WEB-INF/classes 下,下面是一个最简单的配置:
<?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="demo" namespace="/demo" extends="struts-default"> <action name="HelloWorld" class="com.test.action.HelloWrold" > <result name="success">/WEB-INF/pages/hello.jsp</result> </action> </package> </struts>
public class HelloWrold { private String message ; /** * sturts2 Action默认执行的方法 * @return */ public String execute(){ System.out.println("第一个Struts2应用!"); this.setMessage("第一个Struts2应用!"); return "success"; } public String getMessage() { return message; } public void setMessage(String message) { this.message = message; } }
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> ${message } </body> </html>
代码结构(tomcat 工程):
struts2Demo01 |-- bin |-- src |-- WEB-INF | |-- classes | | |-- com | | | `-- test | | | `-- action | | | `-- HelloWrold.class | | `-- struts.xml | |-- lib | | |-- commons-fileupload-1.2.2.jar | | |-- commons-io-2.0.1.jar | | |-- commons-lang3-3.1.jar | | |-- commons-logging-1.1.1.jar | | |-- freemarker-2.3.19.jar | | |-- javassist-3.11.0.GA.jar | | |-- ognl-3.0.5.jar | | |-- struts2-core-2.3.4.jar | | `-- xwork-core-2.3.4.jar | |-- pages | | `-- hello.jsp | |-- src | | |-- com | | | `-- test | | | `-- action | | | `-- HelloWrold.java | | `-- struts.xml | `-- web.xml