1. Struts2介绍
- Struts2是一个基于MVC设计模式的web层框架。
- 官网:https://struts.apache.org
Snip20180816_42.png
2. Struts2访问流程
-
到web.xml中经过Struts2的过滤器
<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>
- 过滤器找到Struts2的配置文件 struts.xml
<struts>
<!-- 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="test.HelloAction" method="hello" >
<!-- result元素:结果配置
name属性: 标识结果处理的名称.与action方法的返回值对应.
type属性: 指定调用哪一个result类来处理结果,默认使用转发.
标签体:填写页面的相对路径
-->
<result name="success" type="dispatcher" >/hello.jsp</result>
</action>
</package>
</struts>
3. Struts2配置详解
3.1 常量配置
Struts2提供的常量配置文件
Snip20180816_43.png
有三种方式进行常量配置(Struts2加载先后顺序也是方法顺序)
- 在src下创建struts.properties文件,将想要配置的常量从default.properties拷贝到struts.properties
- 在struts.xml中直接配置(推荐)
<constant name="struts.i18n.encoding" value="utf-8"></constant>
- 在web.xml中进行配置
<context-param>
<param-name>struts.i18n.encoding</param-name>
<param-value>UTF-8</param-value>
</context-param>
3.2 常量详解
在struts.xml中进行常量的配置
<!-- i18n:国际化. 解决post提交乱码 -->
<constant name="struts.i18n.encoding" value="UTF-8"></constant>
<!-- 指定访问action时的后缀名
http://localhost:8088/hello/HelloAction.do
-->
<constant name="struts.action.extension" value="action"></constant>
<!-- 指定struts2是否以开发模式运行
1.热加载主配置.(不需要重启即可生效)
2.提供更多错误信息输出,方便开发时的调试
-->
<constant name="struts.devMode" value="true"></constant>
4. 配置进阶
引入其他的struts.xml文件,方便分文件配置
<include file="test/struts.xml"></include>
4.1 动态配置
<struts>
<!-- 配置动态方法调用方式1:常量配置
是否开启常量
默认是关闭的,需要开启
-->
<!--<constant name="struts.enable.DynamicMethodInvocation" value="true"></constant>-->
<!-- 动态方法调用方式2:通配符方式
使用{1} 取出第一个星号通配的内容
-->
<package name="test" namespace="/test" extends="struts-default">
<action name="TestAction_*" class="test.TestAction" method="{1}">
<result name="success" type="dispatcher" >/hello.jsp</result>
</action>
</package>
</struts>
TestAction类
public class TestAction {
public String add() {
System.out.println("添加");
return "success";
}
}
4.2 默认值
<struts>
<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>
</struts>
//测试默认配置
public class Demo2Action {
public String execute(){
System.out.println("Demo2Action ~~~~");
return "success";
}
}
5. Action的创建方式
- POJO
//方式1: 创建一个类.可以是POJO
//POJO:不用继承任何父类.也不需要实现任何接口.
//使struts2框架的代码侵入性更低.
public class Demo1Action {
}
- 实现接口
//方式2: 实现一个接口Action
// 里面有execute方法,提供action方法的规范.
// Action接口预置了一些字符串.可以在返回结果时使用.为了方便
public class Demo2Action implements Action {
@Override
public String execute() throws Exception {
return null;
}
}
- 继承
//方式3: 继承一个类.ActionSupport
// 帮我们实现了 Validateable, ValidationAware, TextProvider, LocaleProvider .
//如果我们需要用到这些接口的实现时,不需要自己来实现了.
public class Demo3Action extends ActionSupport{
}
网友评论