struts2使用优势
自动封装参数
参数校验
结果的处理(转发|重定向)
国际化
显示等待页面
表单的防止重复提交
struts2具有更加先进的架构以及思想
使用拦截器
struts2的历史
struts2与struts1区别就是技术上没有什么关系.
struts2的前身是webwork框架.
搭建struts2框架搭建
1.导包 在项目中找
2.书写Action类(处理请求的类) 无需继承什么类
public class Hello { public String hello() { System.out.println("hello"); return "success"; } }
3.书写src/struts.xml dtd约束
<struts> <package name="hello" namespace="/hello" extends="struts-default.xml"> <action name="HelloAction" class="com.action.HelloAction" method="hello"> <result name="success">/index.jsp</result> </action> </package> </struts>
4.将struts2核心过滤器配置到web.xml 因为struct2就是基于过滤器的
<filter> <filter-name>struts</filter-name> <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class> </filter> <filter-mapping> <filter-name>struts</filter-name> <url-pattern>/*</url-pattern> </filter-mapping>
struts2访问流程&struts2架构
配置详解
struts.xml配置
<package name=”hello” namespace=”/hello” extends=”struts-default”> package:将action配置封装 就是可以在package 中配置很多action name属性:给包起个名字,起到标识的作用,不能和其他的包名重复 namespace属性:给action的访问路径中定义一个命名空间 extends属性 继承一个包 abstract属性 包是否为抽象的 标识性属性,标识该包不能被独立运行 专门被别人继承 action元素 配置action类 name属性:决定了action访问资源名 class属性:action所在的完成类名 method属性:指定调用action中指定的方法来处理请求 result元素 结果配置 name属性:标识结果处理的名称 与action方法的返回值对应 type属性:指定调用哪一个result类来处理结果,默认使用转发 标签体:填写页面的相对路径文件 <result name=”success” type=”dispatcher”>/a.jsp</result>
引入其他struts配置
<include file=”/…/…/file.xml”></include>
struts2常量配置
struts2默认常量配置位置 struts-core/default.properties 文件
修改struts2常量配置(方式先后也是加载顺序)
方式1:src/struts.xml里面添加
<constant name="struts.i18n.encoding" value="UTF-8"></constant>
方式2:在src下创建struts.properties
struts.i18n.encoding=utf-8
方式3:在项目的web.xml中
<context-param> <param-name>struts.i18n.encoding</param-name> <param-value>utf-8</param-value> </context-param>
配置文件加载顺序
default.properties struts-default.xml struts-plugin.xml struts.xml struts.properties web.xml
常量配置 struct.xml文件中配置
<constant name="struts.i18n.encoding" value="utf-8"></constant> 解决post提交中文乱码问题 <constant name="struts.action.extension" value="action"></constant> 指定访问action时的后缀名 action
<constant name=”struts.devMode” value=”true”></constant> 指定struts2是否以开发模式运行 1.热加载主配置(不需要重启即可生效) 2.提供更多错误信息输出,方便调试
动态方法调用
方式1 不利于SEO优化
配置动态方法调用是否开启常量
默认是关闭的,需要开启
<constant name="struts.enable.DynamicMethodInvocation" value="true"></constant>
访问 Demo!find.action
方式2 和是否开启常量无关 _ 不是必须的
使用通配符: 使用{1} 取出第一个 星号通配的内容
<action name=”Demo_*” method=”{1}”>
访问 Demo_find
struts2中的默认配置(了解)
<package name="default" namespace="/default" extends="struts-default"> <default-action-ref name=”DemoAction”></default-action-ref> <action name="abcAction" class="com.action.Demo" method="find"> <result name="success">/Hello.jsp</result> </action> </package> 找不到包下的action,会使用 默认的action来处理请求 默认 method属性 execute name属性 success type属性 dispatcher 转发 class 属性 com.opensymphony.xwork2.ActionSupport
Action类的书写方式
方式1(理想状态 开发不常用)
不用继承任何父类 也不需要实现任何接口 似的Struts2框架的代码侵入性更低
public class DemoAction
方式2:实现Action接口
里面定义了execute方法,提供了action方法的规范
Action接口里面预值了一些字符串 可以在返回结果的时候使用
Public class DemoAction implements Action
方式3:继承一个类 ActionSupport
帮我们实现了Validateable ValidationAware TextProvider LocaleProvider等接口
如果我们需要用到这些接口的实现时,不需要自己来实现了
而且在写配置文件的时候 action里面不需要写method
结果跳转方式
转发:type="dispatcher"
重定向:type="redirect"
转发到Action:type = "chain"
重定向到Action:
访问servletAPI方式
通过ActionContext下面2种都是通过这种方式得来的
通过ServletActionContext 因为纯Java操作 不推荐使用
通过实现接口方式 依次类推 通过拦截器实现Config...
Action生命周期
1.每次请求到来时,都会创建一个新的Action实例
2.Action是线程安全的.可以使用成员变量接收参数
属性驱动获得参数(不常用)
对象驱动
模型驱动
集合类型参数封装
List
<input type=”text” name=”list”/> <input type=”text” name=”list[3]”>
private List<String> list;
Map
<input type=”text” name=”map[‘haha’]”/>
private Map<String,String> map;
注意:struts和hibernate包在合并时.javassist-3.18.1-GA.jar包是重复的,删除版本低的.
OGNL表达式
OGNL:对象视图导航语言. ${user.addr.name} 这种写法就叫对象视图导航.
OGNL不仅仅可以视图导航.支持比EL表达式更加丰富的功能.
使用OGNL准备工作
导包: struts2 的包中已经包含了.所以不需要导入额外的jar包
基本取值
赋值 多个赋值可以串联
调用方法
调用静态方法
创建对象(List,Map)
OGNL与Struts2的结合
查看值栈中两部分内容(使用DEBUG标签)在jsp页面
Root: 默认情况下,栈中放置当前访问的Action对象 Context部分就是ActionContext数据中心
struts2与ognl结合体现
参数接收
如何获得值栈对象,值栈对象与ActionContext对象是互相引用的
配置文件中使用
${ognl表达式}
扩展:request对象的getAttribute方法 wrappedRequest
查找顺序
原文地址:https://www.cnblogs.com/escapist/p/9059958.html