Struts2中的核心文件
1.web.xml
任何MVC框架都需要与Web应用整合,这就不得不借用于web.xml文件,只有配置web.xml文件中Servlet才会被应用加载
Model2:JSP+JavaBean+Servlet
通常,所有MVC框架都需要Web应用加载一个核心控制器,对于Struts2框架而言,需要加载StrutsPerpareAndExecuteFilter,只负责Web应用加载StrutsPerpareAndExecuteFilter,StrutsPerpareAndExecuteFilter将会加载Struts2框架。遇到.acton文件就会拦截并进行处理
2.struts.xml
struts2的核心配置文件,在开发过程中利用率最高。
该文件主要负责管理Action的映射,以及该Action包含的Result定义等。
struts.xml中包含的内容:
1、全局属性
2、用户请求和相应Action之间的对应关系
3、Action可能会用到的参数和返回结果
4、各种拦截器的配置
3.struts.properties
struts2框架的全局属性文件,自动加载和strusts.xml在一个路径
该文件包含很多key-value键值对。
这个文件可以不要,可以在structs.xml中进行配置,使用constant元素可以替换
.dtd就是约束struts.xml中可以有哪些标签不能有哪些标签
可以通过 <include file=“”>包含其他文件
可以把每个功能模块独立到一个xml配置文件中,然后用Include节点引用
<package>
package提供了将多个Action组织成为一个模块的方式
package的名字必须是唯一的,可以在这个包上加一些拓展的包
<package name="包名" extends="继承的父类的名称" abstract设置package的属性为抽象,抽象的package不能定义action的值, ture或false namespace 包的命名空间>
<interceptors>为拦截器
可以为拦截器定义name(名称)和class(类路径)
<interceptor-stack>拦截器栈
<default-interceptor-ref name="">定义默认的拦截器,每个Action都会自动引用如果
Action搜索顺序
1、判断 package是否存在
2、判断action是否存在,若存在 , 则打开。
3、action若不存在,则向上一级路径中查找该action。直到默认的namespace, 找不到,则报错
image.png
动态方法调用
动态方法调用是为了解决一个Action对应多个请求的处理,以免Action太多。
三种方式:指定method属性、感叹号方式、通配符
1:繁杂不建议用(struts2.xml指明那个action执行那个method=add)
<action name="add" method="add" class="com.Action.hellowAction">
<action name="update" method="update" class="com.Action.hellowAction">
2:不建议用(!后接执行方法)
<constant name="struts.enable.DynamicMethodInvocation" value="true"> </constant>
<action name="hellowword" class="com.Action.hellowAction">
<result >/result.jsp</result>
<result name="add">/add.jsp</result>
<result name="update">/update.jsp</result>
</action>
http://localhost:8080/struts_hellowworld/aaa/hellowworld!xxx.action
http://localhost:8080/struts_hellowworld/aaa/hellowworld!add.action
http://localhost:8080/struts_hellowworld/aaa/hellowworld!update.action
3:常用的动态方法调用 (第一个代表{1}第二个={2}....)
<constant name="struts.enable.DynamicMethodInvocation" value="false"> </constant>
<action name="*_*" method="{2}" class="com.Action.{1}Action">
<result >/{2}.jsp</result>
<result name="add">/{2}.jsp</result>
<result name="update">/{2}.jsp</result>
</action>
http://localhost:8080/struts_hellowworld/aaa/hellow_add.action
http://localhost:8080/struts_hellowworld/aaa/hellow_update.action
Struts2---指定多个配置文件
1.如果有很多个Action的配置文件,则需要在struts.xml中使用<include file="fileName.xml"/>来包含其他的配置文件
2.struts文件中添加<constant name="struts.i18n.encoding" value="UTF-8"></constant>以防乱码问题的出现
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>
...
</struts>
默认action
为了提升体验度和网站的正常运行配置默认action。当遇到突发状况时均有默认action来撑场面。
<default-action-ref name="name"></default-action-ref>
在名为name的action中配置后台action和前端展示
<default-action-ref name="error"></default-action-ref>
<action name="error">
<result>/error.jsp</result>
</action>
这两个name要相同,访问错误的action时跳转到error.jsp
struts2后缀:
三种设置struts2后缀方式
1.struts.properties中
struts.action.extension=action,do,struts2
2.xml中增加常量constant:
<constant name="struts.action.extension" value="action,do,struts2"></constant>
3.在过滤器中配置intt-param参数:
<init-param>
<param-name>struts.action.extension</param-name>
<param-value>do,action,strtus2</param-value>
</init-param>
接收参数的三种方式
1.使用Action的属性接受参数,在Action中定义需要接受的属性,并写它的set/get方法。
直接在action类中创建相应的属性和getter和setter,和前端的name名字相同。eg:前端的username,在action类中就要建立一个private String username; Struts会自动映射为这个属性赋值
2.使用DomainModel接受参数,创建实体类定义需要接受的属性,并set/get方法,在Action中创建实体类名属性。并在界面进行指定。
使用DomainModel,将username 和password两个属性封装为一个类User(必须是标准的JavaBean),在action中声明这个属性:private User user; 同时为user设置getter和setter;在前端中的name需要设置为user.name和user.password,才能映射成功
3.使用ModelDriver接受参数,在Action中实现ModelDriver<实体类名>接口,并实现方法返回当前需要转换的对象,删除set/get方法,并对 对象 进行实例化,并取消指定。
使用ModelDriven<T>接口,这个action必须实现这个接口的public T getModel()方法。Action类实现ModelDriven <T>接口,重写getModle()方法,Action中不需要getter,setter此时声明的属性必须实例化,eg: private User user = new User(); 同时不需要getter和setter。前端的name也只需要写username和password就可以,不需要再加域了。这种方法时最推荐的方法,因为可以减少前后端的耦合
4.request
5.获取List集合中的参数。获取多个参数。
struts2处理流程
用户请求(前提在web.xml中配置拦截,通过路径)——>Struts框架(通过struts.xml配置)——>控制器Action(返回string类型逻辑视图字符串)——>Struts框架(通过result标签)——>视图资源。
Struts1返回结果类型:ActionForward。
Struts2返回结果类型:String(提供代码复用性,有利于框架分离)。
image.png
处理结果类型(com.opensymphony.xwork2.Action)
SUCCESS:Action正确的执行返回,返回相应试图,success是name属性的默认值。
NONE:表示Action正确的执行完成,但并不返回任何视图。
ERROR:表示Action执行失败,返回到错误处理视图。
LOGIN:Action因为用户没有登陆的原因没有正确执行,将返回该登陆视图,要求用户进行登陆验证。
INPUT:Action的执行,需要从前端界面获取参数,一般在应用中,会对这些参数进行验证,如果验证没有通过,将自动返回到该视图。
image.png
自动跳转到input界面方式:
* 1.当参数类型转换错误时,如age输入框中的类型是字母等情况,方法自动返回input
- 2.当action中存在addFiledError时:
* 1)addFileError放在一般执行方法,addFieldError("", "");语句后面有返回input的语句
* 2)addFileError放在validate()中
*3.FileError的表现形式:
* 在jsp页面中使用<s:fielderror/>标签,该标签name属性为addFieldError方法中的参数fieldName,在jsp页面中使用struts标签,
* 需要导入标签库 语句:<%@ taglib prefix="s" uri="/struts-tags" %>
处理结果类型(处理结果是通过在struts.xml使用<result/>标签配置结果)
根据位置的不同,分为两种结果:
局部结果:将<result>标签作为<action/>元素的子元素来处理。
全局结果:将<result/>作为<global-result/>元素的子元素的来处理,<global-result/>相当于公共的处理结果集。
例如:
<package name="">
<global-results>
<result name="">..</result>
<result name="">..</result>
<global-results>
</package>
<result>标签的子元素<param name="loaction" parse="">resource</param>:
name属性的location:定义了该视图对应的实际视图资源。
parse属性:是否可以在实际视图名字中使用OGNL表达式,struts默认是true。
网友评论