2

Struts是什么

概念

Struts2是一个基于MVC设计模式的Web应用框架,它本质上相当于一个servlet,在MVC设计模式中,Struts2作为控制器(Controller)来建立模型与视图的数据交互。Struts 2是Struts的下一代产品,是在 struts 1和WebWork的技术基础上进行了合并的全新的Struts 2框架。其全新的Struts 2的体系结构与Struts 1的体系结构差别巨大。Struts 2以WebWork为核心,采用拦截器的机制来处理用户的请求,这样的设计也使得业务逻辑控制器能够与ServletAPI完全脱离开,所以Struts 2可以理解为WebWork的更新产品。虽然从Struts 1到Struts 2有着太大的变化,但是相对于WebWork,Struts 2的变化很小。

clipboard.png

优势

  • 自动封装参数
  • 参数校验
  • 结果的处理(转发|重定向)
  • 国际化
  • 显示等待页面
  • 表单的防止重复提交

搭建Struts2框架

1.导包
在Struts2的zip包下的apps中找到struts2-blank.war,用解压软件打开,lib就是所需要的jar包

clipboard.png

2.书写Action类

package cn.zhli13.a_hello;

public class HelloAction {
    
    public String hello () {
        System.out.println("hello_word");
        return "success";
    }
}

3.书写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="hello" namespace="/hello" extends="struts-default">
        <action name="HelloAction" class="cn.zhli13.a_hello.HelloAction" method="hello">
            <result name="success">/hello.jsp</result>
        </action>
    </package>
</struts>

4.将Struts核心过滤器配置到web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
  <display-name>strus2_demo</display-name>
  <!-- Struts核心过滤器 -->
  <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>

5.测试结果

clipboard.png

6.流程图

clipboard.png

struts2访问流程&struts2架构

clipboard.png

配置详解

struts.xml配置

<!-- i18n:国际化. 解决post提交乱码 -->
<constant name="struts.i18n.encoding" value="UTF-8"></constant>
<!-- 指定访问action时的后缀名 
    http://localhost:8080/struts2_day01/hello/HelloAction.do
-->
<constant name="struts.action.extension" value="action"></constant>
<!-- 指定struts2是否以开发模式运行
        1.热加载主配置.(不需要重启即可生效)
        2.提供更多错误信息输出,方便开发时的调试
 -->
<constant name="struts.devMode" value="true"></constant>
<!-- package:将Action配置封装.就是可以在Package中配置很多action.
        name属性: 给包起个名字,起到标识作用.随便起.不能其他包名重复.
        namespace属性:给action的访问路径中定义一个命名空间
        extends属性: 继承一个 指定包
        abstract属性:包是否为抽象的; 标识性属性.标识该包不能独立运行.专门被继承
  -->
<package name="hello" namespace="/hello" extends="struts-default" >
    <!-- action元素:配置action类
            name属性: 决定了Action访问资源名.
            class属性: action的完整类名
            method属性: 指定调用Action中的哪个方法来处理请求
     -->
    <action name="HelloAction" class="cn.itheima.a_hello.HelloAction" method="hello" >
        <!-- result元素:结果配置 
                name属性: 标识结果处理的名称.与action方法的返回值对应.
                type属性: 指定调用哪一个result类来处理结果,默认使用转发.
                标签体:填写页面的相对路径
        -->
        <result name="success" type="dispatcher" >/hello.jsp</result>
    </action>
</package>
<!-- 引入其他struts配置文件 -->
<include file="cn/zhli13/b_dynamic/struts.xml"></include>

2.struts常量配置

struts2默认常量配置位置
clipboard.png

修改struts2常量配置(方式先后也是加载顺序)

方式1:src/struts.xml(主要)
<!-- i18n:国际化. 解决post提交乱码 -->
<constant name="struts.i18n.encoding" value="UTF-8"></constant>
方式2:在src下创建struts.properties
struts.i18n.encoding=UTF8
方式3:在项目的web.xml中
<context-param>
  <param-name>struts.i18n.encoding</param-name>
  <param-value>UTF-8</param-value>
</context-param>

3.struts2配置的进阶
动态方法调用

方式1:

<!-- 配置动态方法调用是否开启常量
        默认是关闭的,需要开启
        访问时方法名前要添加!符号
 -->
<constant name="struts.enable.DynamicMethodInvocation" value="false"></constant>
方式2:
   <package name="dynamic" namespace="/dynamic" extends="struts-default" >
    <!-- 动态方法调用方式2:通配符方式
         使用{1} 取出第一个星号通配的内容
      -->
    <action name="Demo1Action_*" class="cn.zhli13.b_dynamic.Demo1Action" method="{1}" >
        <result name="success" >/hello.jsp</result>
    </action>
</package>

struts2中的默认配置

    <package name="default" namespace="/default" extends="struts-default" >
        <!-- 找不到包下的action,会使用Demo2Action作为默认action处理请求 -->
        <default-action-ref name="Demo2Action"></default-action-ref>
        <!-- method属性:execute  -->
        <!-- result的name属性:success  -->
        <!-- result的type属性:dispatcher 转发  -->
        <!-- class属性:com.opensymphony.xwork2.ActionSupport -->
        <action name="Demo2Action"   >
            <result  >/hello.jsp</result>
        </action>
    </package>

Action类详解

Action类的书写方式

方式1
package cn..d_api;
//方式1: 创建一个类.可以是POJO
//POJO:不用继承任何父类.也不需要实现任何接口.
//使struts2框架的代码侵入性更低.
public class Demo3Action {

}

//方式2: 实现一个接口Action
// 里面有execute方法,提供action方法的规范.
// Action接口预置了一些字符串.可以在返回结果时使用.为了方便
import com.opensymphony.xwork2.Action;

public class Demo4Action implements Action {

    @Override
    public String execute() throws Exception {
        return null;
    }

}


//方式3: 继承一个类.ActionSupport
// 帮我们实现了 Validateable, ValidationAware, TextProvider, LocaleProvider .
//如果我们需要用到这些接口的实现时,不需要自己来实现了.
import com.opensymphony.xwork2.ActionSupport;

public class Demo5Action  extends ActionSupport{

}

zer0_li
1.4k 声望307 粉丝

经不住似水流年,逃不过此间少年