<! DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" "http://struts.apache.org/dtds/struts-2.0.dtd"
>
< struts >
<!-- include节点是struts2中组件化的方式 可以将每个功能模块独立到一个xml配置文件中 然后用include节点引用
-->
<
include file ="struts-default.xml" ></ include >
<!-- package提供了将多个Action组织为一个模块的方式
package的名字必须是唯一的 package可以扩展 当一个package扩展自
另一个package时该package会在本身配置的基础上加入扩展的package
的配置 父package必须在子package前配置
name:package名称
extends:继承的父package名称
abstract:设置package的属性为抽象的 抽象的package不能定义action 值true:false
namespace:定义package命名空间 该命名空间影响到url的地址,例如此命名空间为/test那么访问是的地址为http://localhost:8080/struts2/test/XX.action
-->
<
package name ="com.kay.struts2" extends ="struts-default" namespace ="/test" >
< interceptors >
<!-- 定义拦截器
name:拦截器名称
class:拦截器类路径
-->
< interceptor name ="timer"
class ="com.kay.timer" ></ interceptor >
< interceptor name ="logger"
class ="com.kay.logger" ></ interceptor >
<!-- 定义拦截器栈 -->
< interceptor-stack name ="mystack" >
< interceptor-ref name ="timer"
></ interceptor-ref >
< interceptor-ref name ="logger"
></ interceptor-ref >
</ interceptor-stack >
</ interceptors >
<!-- 定义默认的拦截器 每个Action都会自动引用
如果Action中引用了其它的拦截器 默认的拦截器将无效
-->
< default-interceptor-ref name ="mystack" ></ default-interceptor-ref >
<!-- 全局results配置 -->
< global-results >
< result
name ="input" >
/error.jsp </ result
>
</ global-results >
<!-- Action配置 一个Action可以被多次映射(只要action配置中的name不同)
name:action名称
class: 对应的类的路径
method: 调用Action中的方法名
-->
< action
name ="hello" class ="com.kay.struts2.Action.LoginAction" >
<!-- 引用拦截器
name:拦截器名称或拦截器栈名称
-->
< interceptor-ref name ="timer"
></ interceptor-ref >
<!-- 节点配置
name : result名称 和Action中返回的值相同
type : result类型 不写则选用superpackage的type struts-default.xml中的默认为dispatcher
-->
< result
name ="success" type ="dispatcher" > /talk.jsp
</ result >
<!-- 参数设置
name:对应Action中的get/set方法
-->
< param
name ="url" >
http://www.sina.com </ param
>
</ action
>
</
package >
</ struts
>
分享到:
相关推荐
"Struts2 中 Struts.xml 配置文件详解" Struts2 中的 Struts.xml 配置文件是 Struts2 框架的核心配置文件,用于定义应用程序的行为和结构。在 Struts.xml 文件中,我们可以定义 package、action、interceptor、...
`struts2.0中struts.xml配置文件详解.docx`深入解析了Struts2的核心配置文件`struts.xml`,该文件定义了Action、Result、Interceptor栈等关键元素,是控制流程的中心。通过学习这份文档,开发者可以了解如何配置...
"struts2.0-1基本入门.doc"和"Struts2.0的各种配置详解.doc"将详细介绍如何在struts.xml文件中配置Action、Result和Interceptor。Action配置包括指定Action类、方法和映射URL,Result则定义了请求成功后的跳转路径,...
### web.xml配置文件详解 #### 一、概述 `web.xml`是Java Web应用程序的核心配置文件之一,主要用于定义Web应用程序的结构与行为。它是Servlet容器(如Tomcat)读取Web应用程序配置信息的主要来源,因此深入理解其...
struts1 中 web.xml 配置详解 struts1 框架是一种基于 Java 语言的 Web 应用程序开发框架,它提供了一个灵活的、可扩展的框架来开发基于 Web 的应用程序。在 struts1 框架中,web.xml 文件是必不可少的配置文件之一...
Struts.xml文件是Apache Struts 2框架的核心配置文件,它用于定义应用程序的行为、Action映射、结果页面、拦截器等关键组件。在深入讲解struts.xml之前,我们先来了解与之相关的struts.properties文件。 struts....
### Struts框架中struts-config.xml文件配置详解 #### 一、引言 在Java Web开发领域,Struts是一个非常重要的MVC(Model-View-Controller)框架,它极大地简化了Web应用程序的开发过程。而在Struts框架中,`struts...
2. **配置详解**:Struts2的配置文件通常为struts.xml,手册会详细介绍配置元素如package、action、result、interceptor-stack等的用法,以及如何进行全局和局部配置。 3. **Action和结果类型**:Action是业务逻辑...
在Struts中,`struts.xml`和`struts.properties`文件是两个核心的配置文件,它们分别负责定义应用的行为和设置全局属性。 **`struts.xml`配置详解** `struts.xml`是Struts 2框架的核心配置文件,用于定义动作映射...
Struts-config.xml 配置文件详解 Struts-config.xml 是 Struts 框架的主要配置文件,用于配置 Struts 应用程序的各种设置。在该文件中,可以配置数据源、Form Bean、Action 和插件等信息。下面是 Struts-config.xml...
### Struts.xml配置文件详解 #### 一、Struts配置文件概述 在Struts框架中,`struts.xml`配置文件扮演着极其重要的角色。它主要用于定义应用中的各种配置信息,包括但不限于包(Package)、拦截器(Interceptor)...
2. **FilterDispatcher 查找 struts.xml 配置文件**。 3. **根据配置文件中的 URL 映射找到对应的 Action 类**。 4. **执行 Action 逻辑**。 5. **Action 返回结果**。 6. **根据结果类型渲染视图**。 #### 五、...
而`struts-config.xml`配置文件则是Struts应用的核心配置文件,它负责管理Struts应用中的各种组件配置。本文将详细介绍`struts-config.xml`配置文件的关键组成部分及其作用。 #### 二、文件结构 `struts-config.xml...
Struts的配置文件通常命名为struts-config.xml,它是整个Struts应用的核心配置文件,通过定义一系列的XML元素来设定框架的不同功能和行为。下面将详细介绍struts-config.xml中8个主要配置元素的功能和使用方法。 1....
这个strut-config配置详解是韩顺平老师指定的 很多同学都看过韩老师的视频或者上过韩老师的课程吧
Struts2的Struts.properties配置文件详解 Struts2是一个基于MVC模式的Web应用程序框架,它提供了一个名为Struts.properties的配置文件,该文件用于配置Struts2的各种参数和设置。下面将对Struts.properties配置文件...
4. **配置文件详解**:Struts2的配置文件通常为struts.xml,用于定义Action、结果类型、拦截器栈等。通过配置文件,开发者可以灵活地指定URL到Action的映射、Action的执行流程等。 5. **OGNL表达式语言**:OGNL...