`
nynui
  • 浏览: 2562 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

struts.xml配置详解

阅读更多

1、<include>

利用include标签,可以将一个struts.xml配置文件分割成多个配置文件,然后在struts.xml中使用<include>标签引入其他配置文件。

比如一个网上购物程序,可以把用户配置、商品配置、订单配置分别放在3个配置文件user.xml、goods.xml和order.xml中,然后在struts.xml中将这3个配置文件引入:

struts.xml:

01 <? xml version = "1.0" encoding = "UTF-8" ?>
02 <!DOCTYPE struts PUBLIC
03      "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
05  
06 < struts >
07      < include file = "user.xml" />
08      < include file = "goods.xml" />
09      < include file = "order.xml" />
10 </ struts >

 

user.xml:

01 <? xml version = "1.0" encoding = "UTF-8" ?>
02 <!DOCTYPE struts PUBLIC
03      "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
05  
06 < struts >
07      < package name = "wwfy" extends = "struts-default" >
08          < action name = "login" class = "wwfy.user.LoginAction" >
09              <!--省略Action其他配置-->
10          </ action >
11          < action name = "logout" class = "wwfy.user.LogoutAction" >
12              <!--省略Action其他配置-->
13          </ action >
14      </ package >
15 </ struts >

 

2、<constant>

在之前提到struts.properties配置文件的介绍中,我们曾经提到所有在struts.properties文件中定义的属性,都可以配置在struts.xml文件中。而在struts.xml中,是通过<constant>标签来进行配置的:

01 <? xml version = "1.0" encoding = "UTF-8" ?>
02 <!DOCTYPE struts PUBLIC
03      "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
05  
06 < struts >
07      <!--设置开发模式-->
08      < constant name = "struts.devMode" value = "true" />
09      <!--设置编码形式为GB2312-->
10      < constant name = "struts.i18n.encoding" value = "GB2312" />
11      <!--省略其他配置信息-->
12 </ struts >

 

3、<package>

1、包属性介绍

在Struts2框架中是通过包来管理action、result、interceptor、interceptor-stack等配置信息的。包属性如下:

属性

是否必需

描述

name 包名,作为其它包应用本包的标记
extends 设置本包继承其它包
namespace 设置包的命名空间
abstact 设置为抽象包

 

2、extends属性的详解

  • 当一个包通过配置extends属性继承了另一个包的时候,该包将会继承父包中所有的配置,包括action、result、interceptor等。
  • 由于包信息的获取是按照配置文件的先后顺序进行的,所以父包必须在子包之前被定义。
  • 通常我们配置struts.xml的时候,都继承一个名为“struts-default.xml”的包,这是struts2中内置的包。

 

3、namespace的详解

namespace主要是针对大型项目中Action的管理,更重要的是解决Action重名问题,因为不在同一个命名空间的Action可以使用相同的Action名的。

1)如果使用命名空间则URL将改变

比如我们有一下配置文件

1 < package name = "wwfy" extends = "struts-default" >
2      < action name = "login" class = "wwfy.action.LoginAction" >
3          < result >/success.jsp</ result >
4      </ action >
5 </ package >

 

则此配置下的Action的URL为http://localhost:8080/login.action

 

假如为这个包指定了命名空间

1 < package name = "wwfy" extends = "struts-default" namespace = "/user" >
2      < action name = "login" class = "wwfy.action.LoginAction" >
3          < result >/success.jsp</ result >
4      </ action >
5 </ package >

 

则此配置下的Action的URL为http://localhost:8080/user/login.action

2)默认命名空间

Struts2中如果没有为某个包指定命名空间,该包使用默认的命名空间,默认的命名空间总是""。

3)指定根命名空间

当设置了命名空间为“/”,即指定了包的命名空间为根命名空间时,此时所有根路径下的Action请求都会去这个包中查找对应的资源信息。

假若前例中路径为http://localhost:8080/login.action 则所有http://localhost:8080/*.action 都会到设置为根命名空间的包中寻找资源。

 

4、<action>与<result>

1、<action>属性介绍

属性名称

是否必须

功能描述

name 请求的Action名称
class Action处理类对应具体路径
method 指定Action中的方法名
converter 指定Action使用的类型转换器

如果没有指定method则默认执行Action中的execute方法。

2、<result>属性介绍

属性名称

是否必须

功能描述

name 对应Action返回逻辑视图名称,默认为success
type 返回结果类型,默认为dispatcher

 

3、通配符的使用

随着result的增加,struts.xml文件也会随之变得越来越复杂。那么就可以使用通配符来简化配置:

例如下面这个案例:

Action为Test.java

 

01 public class Test {
02      public String test1(){
03          return "result1" ;
04      }
05       
06      public String test2(){
07          return "result2" ;
08      }
09       
10      public String test3(){
11          return "result3" ;
12      }
13 }

 

struts.xml中配置为

1 < package name = "wwfy" extends = "struts-default" >
2      < action name = "test*" class = "wwfy.action.test{1}" >
3          < result name = "result{1}" >/result{1}.jsp</ result >
4      </ action >
5 </ package >

4、访问Action方法的另一种实现方式

在Struts2中如果要访问Action中的指定方法,还可以通过改变URL请求来实现,将原本的“Action名称.action”改为“Action名称!方法名称.action”在struts.xml中就不需要指定方法名了。

 

5、<exception-mapping>与<global-exception-mapping>

这两个标签都是用来配置发生异常时对应的视图信息的,只不过一个是Action范围的,一个是包范围的,当同一类型异常在两个范围都被配置时,Action范围的优先级要高于包范围的优先级.这两个标签包含的属性也是一样的:

属性名称

是否必须

功能描述

name 用来表示该异常配置信息
result 指定发生异常时显示的视图信息,这里要配置为逻辑视图
exception 指定异常类型

 

两个标签的示例代码为:

01 <? xml version = "1.0" encoding = "UTF-8" ?>
02 <!DOCTYPE struts PUBLIC
03      "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
05  
06 < struts >
07      < package name = "default" extends = "struts-default" >
08          < global-exception-mappings >
09              < exception-mapping result = "逻辑视图" exception = "异常类型" />
10          </ global-exception-mappings >
11          < action name = "Action名称" >
12              < exception-mapping result = "逻辑视图" exception = "异常类型" />
13          </ action >
14      </ package >
15 </ struts >

 

6、<default-class-ref>

当我们在配置Action的时候,如果没有为某个Action指定具体的class值时,系统将自动引用<default-class- ref>标签中所指定的类。在Struts2框架中,系统默认的class为ActionSupport,该配置我们可以在xwork的核心包下的 xwork-default.xml文件中找到。

有特殊需要时,可以手动指定默认的class

1 package wwfy.action;
2  
3 public class DefaultClassRef {
4      public void execute(){
5          System.out.println( "默认class开始执行……" );
6      }
7 }

 

在struts.xml中配置

 

01 <? xml version = "1.0" encoding = "UTF-8" ?>
02 <!DOCTYPE struts PUBLIC
03      "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
05  
06 < struts >
07      < package name = "wwfy" extends = "struts-default" >
08          <!-- 指定默认class为Test -->
09          < default-class-ref class = "wwfy.action.DefaultClassRef" />
10          < action name = "test1" >
11              < result >/index.jsp</ result >
12          </ action >
13      </ package >
14 </ struts >

 

7、<default-action-ref>

如果在请求一个没有定义过的Action资源时,系统就会抛出404错误。这种错误不可避免,但这样的页面并不友好。我们可以使 用<default-action-ref>来指定一个默认的Action,如果系统没有找到指定的Action,就会指定来调用这个默认的 Action。

01 <? xml version = "1.0" encoding = "UTF-8" ?>
02 <!DOCTYPE struts PUBLIC
03      "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
05  
06 < struts >
07      < package name = "wwfy" extends = "struts-default" >
08           
09          < default-action-ref name = "acctionError" ></ default-action-ref >
10          < action name = "acctionError" >
11              < result >/jsp/actionError.jsp</ result >
12          </ action >
13      </ package >
14 </ struts >

 

8、<default-interceptor-ref>

该标签用来设置整个包范围内所有Action所要应用的默认拦截器信息。事实上我们的包继承了struts-default包以后,使用的是Struts的默认设置。我们可以在struts-default.xml中找到相关配置:

1 < default-interceptor-ref name = "defaultStack" />

 

在实际开发过程中,如果我们有特殊的需求是可以改变默认拦截器配置的。当时一旦更改这个配置,“defaultStack”将不再被引用,需要手动最加。

 

9、<interceptors>

通过该标签可以向Struts2框架中注册拦截器或者拦截器栈,一般多用于自定义拦截器或拦截器栈的注册。该标签使用方法如下:

1 < interceptors >
2      < interceptor name = "拦截器名" class = "拦截器类" />
3      < interceptor-stack name = "拦截器栈名" >
4          < interceptor-ref name = "拦截器名" >
5      </ interceptor-stack >
6 </ interceptors >

 

10、<interceptor-ref>

通过该标签可以为其所在的Action添加拦截器功能。当为某个Action单独添加拦截器功能后,<default-interceptor-ref>中所指定的拦截器将不再对这个Action起作用。

 

11、<global-results>

该标签用于设置包范围内的全局结果集。在多个Action返回相同逻辑视图的情况下,可以通过<global-results>标签统一配置这些物理视图所对应的逻辑视图。

01 <? xml version = "1.0" encoding = "UTF-8" ?>
02 <!DOCTYPE struts PUBLIC
03      "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
05  
06 < struts >
07      < package name = "wwfy" extends = "struts-default" >
08          < global-results >
09              < result name = "test" >/index.jsp</ result >
10          </ global-results >
11      </ package >
12 </ struts >
分享到:
评论

相关推荐

    struts.xml和struts.properties配置详解

    **一、struts.xml配置详解** `struts.xml`是Struts2的核心配置文件,它负责定义动作(Action)、结果(Result)、拦截器(Interceptor)等核心元素,控制着应用程序的流程。以下是一些主要的配置元素: 1. ****: ...

    struts.xml文件详解.doc

    Struts.xml文件是Apache Struts 2框架的核心配置文件,它用于定义应用程序的行为、Action映射、结果页面、拦截器等关键组件。在深入讲解struts.xml之前,我们先来了解与之相关的struts.properties文件。 struts....

    Struts2中Struts.xml配置文件详解

    "Struts2 中 Struts.xml 配置文件详解" Struts2 中的 Struts.xml 配置文件是 Struts2 框架的核心配置文件,用于定义应用程序的行为和结构。在 Struts.xml 文件中,我们可以定义 package、action、interceptor、...

    struts.xml文件详解示例代码

    Struts.xml文件是Apache Struts 2框架的核心配置文件,用于定义应用的MVC(Model-View-Controller)架构和动作映射。它为应用程序提供了一种声明式的方式来配置Struts2的行为,使得开发者能够控制请求如何被处理,...

    struts.xml配置文件详解

    ### Struts.xml配置文件详解 #### 一、Struts配置文件概述 在Struts框架中,`struts.xml`配置文件扮演着极其重要的角色。它主要用于定义应用中的各种配置信息,包括但不限于包(Package)、拦截器(Interceptor)...

    struts2.0中struts.xml配置文件详解

    在深入探讨Struts2.0框架中的`struts.xml`配置文件之前,我们先来了解一下Struts2.0框架的基本概念。Struts2是Apache软件基金会的一个开源项目,它是一个基于MVC(Model-View-Controller)设计模式的Java Web应用...

    Struts-config.xml配置详解

    Struts的配置文件通常命名为struts-config.xml,它是整个Struts应用的核心配置文件,通过定义一系列的XML元素来设定框架的不同功能和行为。下面将详细介绍struts-config.xml中8个主要配置元素的功能和使用方法。 1....

    struts-config.xml配置详解

    韩顺平视频配套struts-config.xml配置详解.txt

    struts1中web.xml配置详解

    struts1 中 web.xml 配置详解 struts1 框架是一种基于 Java 语言的 Web 应用程序开发框架,它提供了一个灵活的、可扩展的框架来开发基于 Web 的应用程序。在 struts1 框架中,web.xml 文件是必不可少的配置文件之一...

    Struts框架中struts-config.xml文件配置小结

    ### Struts框架中struts-config.xml文件配置详解 #### 一、引言 在Java Web开发领域,Struts是一个非常重要的MVC(Model-View-Controller)框架,它极大地简化了Web应用程序的开发过程。而在Struts框架中,`struts...

    struts2的struts.properties配置文件详解

    如果设置为true,Struts2将加载XML配置文件;否则,不加载。 5. struts.continuations.package:这是一个包名,包含使用Rife continuations的actions。 6. struts.custom.i18n.resources:这是一个附加的国际化...

    struts.properties配置详解

    ### Struts2中struts.properties配置详解 #### 概述 在Struts2框架中,除了大家熟知的`struts.xml`配置文件之外,还有一个重要的配置文件——`struts.properties`。该文件主要用来存储一些Struts2的核心配置属性,...

    struts-config.xml配置详解.txt

    这个strut-config配置详解是韩顺平老师指定的 很多同学都看过韩老师的视频或者上过韩老师的课程吧

    web.xml配置文件详解

    ### web.xml配置文件详解 #### 一、概述 `web.xml`是Java Web应用程序的核心配置文件之一,主要用于定义Web应用程序的结构与行为。它是Servlet容器(如Tomcat)读取Web应用程序配置信息的主要来源,因此深入理解其...

    struts.xml文件详解

    Struts.xml 文件是 Apache Struts 2 框架的核心配置文件,用于定义应用程序的行为、组织 Action、拦截器以及结果页面等。以下是该文件的主要组成部分和相关知识点的详细解释: 1. **DOCTYPE 声明**: DOCTYPE 声明...

    struts-config.xml配置文件详解

    Struts-config.xml 配置文件详解 Struts-config.xml 是 Struts 框架的主要配置文件,用于配置 Struts 应用程序的各种设置。在该文件中,可以配置数据源、Form Bean、Action 和插件等信息。下面是 Struts-config.xml...

    truts.xml-struts.properties-详

    通过阅读`truts.xml_struts.properties_详解共6页.pdf.zip`中的内容,你将深入理解这两个配置文件的详细用法和最佳实践。这个压缩包可能包含了关于Action配置、拦截器配置、结果类型、异常处理、国际化和自定义配置...

    Struts课堂笔记.rar--struts2的struts.properties配置文件详解

    是否加载xml配置(true,false) struts.continuations.package The package containing actions that use Rife continuations 含有actions的完整连续的package名称 struts.custom.i18n.resources Location of ...

Global site tag (gtag.js) - Google Analytics