`

struts2 常量配置

 
阅读更多

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.1//EN"
        "http://struts.apache.org/dtds/struts-2.1.dtd">
<struts>

 <!--开发模式设置开始//-->
 <!--++++++++++++++++++++++++++++++++++++++++++++++++开发状态 -->
 <constant name="struts.devMode" value="true" />
 <!-- 国际化资源重新加载 -->
 <constant name="struts.i18n.reload" value="true" />
 <!-- 配置文件重新加载 -->
 <constant name="struts.configuration.xml.reload" value="true" />
 <!-- convention类从新加载 -->
 <constant name="struts.convention.classes.reload" value="true" />
 <!--++++++++++++++++++++++++++++++++++++++++++++++++开发模式结束 -->
 <!-- 主题 -->
 <constant name="struts.ui.theme" value="simple" />
 <!-- 地区 -->
 <constant name="struts.locale" value="zh_CN" />
 <!-- 国际化编码 -->
 <constant name="struts.i18n.encoding" value="UTF-8" />
 <!-- 扩展-->
 <constant name="struts.action.extension" value="action,do,jsp" />
 <!-- 启用动态方法调用 -->
 <constant name="struts.enable.DynamicMethodInvocation" value="true" />
 <!-- 设置Struts 2是否允许在Action名中使用斜线 -->
 <constant name="struts.enable.SlashesInActionNames" value="false" />
 <!-- 结果资源所在路径 -->
 <constant name="struts.convention.result.path" value="/"/>
 <!-- action后缀 -->
 <constant name="struts.convention.action.suffix" value="Action"/>
 <!-- 名称首字母小写 -->
 <constant name="struts.convention.action.name.lowercase" value="true"/>
 <!-- 分隔符 一个action名字的获取。比如为HelloWorldAction。按照配置,actionName为hello_world。 -->
 <constant name="struts.convention.action.name.separator" value="_"/>
 <!-- 禁用扫描 -->
 <constant name="struts.convention.action.disableScanning" value="false"/>
 <!-- 默认包 -->
 <constant name="struts.convention.default.parent.package" value="default"/>
 <!--确定搜索包的路径。只要是结尾为action的包都要搜索。basePackage按照默认不用配置,如果配置,只会找以此配置开头的包。locators及locators.basePackage都是一组以逗号分割的字符串。 -->
 <constant name="struts.convention.package.locators" value="actions"/>

<!-- 禁用包搜索 -->

<constant name="struts.convention.package.locators.disable" value="false"/>
 <!-- 基于什么包 -->
 <constant name="struts.convention.package.locators.basePackage" value="com.sunflower.actions"/>
 <!-- 排除的包 -->
 <constant name="struts.convention.exclude.packages" value="org.apache.struts.*,org.apache.struts2.*,org.springframework.web.struts.*,org.springframework.web.struts2.*,org.hibernate.*"/>
 <!-- 包含的包 --> <!-- 包括的jar,一般用于大型项目,其action一般打包成jar -->
 <constant name="struts.convention.action.includeJars" value="" />
 <!-- 结果类型 -->
 <constant name="struts.convention.relative.result.types" value="dispatcher,freemarker"/>
 <!-- 如果此值设为true,如果一个action的命名空间为/login,名称为HelloWorldAction。result返回值是success, 默认会找到/WEB-INF/pages/login/hello_world.jsp(如果有hello_world_success.jsp就找这个 文件,连接符“_”是在<constant name="struts.convention.action.name.separator" value="_"/>中配置的)。如果有一个action的result返回值是“error”,就会找/WEB-INF/pages /login/hello_world_error.jsp。 如果此值设为false,如果一个action的命名空间为/login,名称为HelloWorldAction。result返回值是 success,默认会找到/WEB- INF/pages/login/hello_world/index.jsp(如果有success.jsp就找这个文件)。如果有一个action的 result返回值是“error”,就会找/WEB-INF/pages /login/hello_world/error.jsp。 -->
 <constant name="struts.convention.result.flatLayout" value="true"/>
 <constant name="struts.convention.action.mapAllMatches" value="false"/>
 <!-- 检查是否实现action -->
 <constant name="struts.convention.action.checkImplementsAction" value="true"/>
 <constant name="struts.mapper.alwaysSelectFullNamespace" value="false"/>
 <constant name="struts.convention.redirect.to.slash" value="true"/>
 <package name="default" extends="struts-default">
  <interceptors>
   <interceptor-stack name="defaultStack">
    <interceptor-ref name="exception" />
    <interceptor-ref name="servletConfig" />
    <interceptor-ref name="actionMappingParams" />
    <interceptor-ref name="staticParams" />
    <interceptor-ref name="params" />
   </interceptor-stack>
  </interceptors>
 </package>
 </struts>

分享到:
评论

相关推荐

    Struts2的常量配置

    ### Struts2的常量配置解析 #### 引言 在Java Web开发中,Struts2框架因其灵活性和强大的功能而被广泛采用。Struts2的配置灵活性体现在其丰富的常量配置选项上,这些配置项可以调整框架的行为,优化应用程序性能,...

    struts2常量详解

    本文将深入探讨Struts2中的常量配置,这些常量在框架的运行时扮演着至关重要的角色。 首先,我们要了解Struts2配置文件的层次结构。主要有以下几个核心配置文件: 1. **struts-default.xml**:这是Struts2核心库中...

    struts2常量设置详解 struts2常量设置详解

    ### Struts2常量设置详解 #### 一、概述 在Struts2框架中,配置文件`struts.properties`用于定义一系列重要的系统级配置项,这些配置项对框架的行为模式和功能实现起着至关重要的作用。本文将详细介绍该文件中几个...

    Struts2的常量详解

    Struts2 框架中有许多重要的常量,它们负责控制着 Struts2 的行为和配置。下面我们将对 Struts2 中的一些常量进行详细的解释和分析。 1. struts.configuration struts.configuration 属性指定加载 Struts 2 配置...

    Struts2配置精要之常量constant配置详解(包括零配置Convention 的常量)

    本文将深入探讨Struts2中的常量配置,包括基本的XML配置以及零配置的Convention模式下的常量设定。 首先,让我们了解Struts2框架中的常量配置。这些常量定义在`struts-default.xml`和`struts-plugin.xml`等配置文件...

    Struts2常量的具体用法实例

    在Struts2中,常量配置是非常关键的一环,它们控制着框架的行为和性能,通过在struts.xml文件中定义,可以灵活地调整框架的默认行为以适应不同的应用需求。 ### Struts2常量的具体用法实例 #### 1. struts.i18n....

    strtus2常量

    在深入探讨Struts2常量配置的细节之前,我们首先简要回顾一下Struts2框架。Struts2是一个基于MVC设计模式的Java Web应用程序框架,它提供了丰富的功能,如表单验证、国际化支持、拦截器等,使得开发人员能够构建高效...

    struts2核心配置文件

    5. **常量配置** (`constant`): - 通过 `&lt;constant name="key" value="value"/&gt;` 来定义全局的配置项。 - 这些配置项可以在Struts2的其他配置文件中使用,如 `struts.properties`。 #### 三、struts.properties ...

    Struts2框架笔记

    #### Struts2常量配置 Struts2框架提供了大量的常量供开发者配置,这些常量可以控制框架的各个方面,例如: - **struts.devMode**: 开发模式开关,开启后会提供更多调试信息。 - **struts.action.extension**: 指定...

    struts2的配置信息

    在这个“struts2的配置信息”主题中,我们将深入探讨Struts2的核心配置及其lib资源。 首先,让我们关注`lib`目录。这个目录包含了Struts2运行所需的库文件,这些文件是JAR(Java Archive)格式,它们提供了框架的...

    ·Struts2配置文件介绍 超级详细

    ### Struts2配置文件介绍 #### 一、Struts2的核心配置文件 在Struts2框架中,有多个重要的配置文件用于控制应用的行为与结构,其中最核心的是`struts.xml`文件。此外还包括`web.xml`、`struts.properties`、`...

    struts2复习资料

    1. **Struts2常量配置**: - `struts.devMode`:这是一个用于设定开发模式的常量,设置为`true`时,Struts2会在开发阶段提供更多的错误信息和调试帮助,避免重启服务器。 - `struts.i18n.encoding`:定义了Struts2...

    Struts2\constant应用

    #### 二、Struts2常量配置项详解 ##### 1. struts.i18n.encoding **作用:** 指定Web应用的默认编码集,等同于调用`HttpServletRequest`的`setCharacterEncoding`方法。 **配置示例:** ```xml &lt;constant name="...

    简述STRUTS2_Convention零配置

    STRUTS2 Convention 零配置是Struts2框架中的一种高级特性,旨在简化应用程序的配置,让开发者能够更快地构建MVC应用。从Struts2.1版本开始,推荐使用Convention插件替代Codebehind插件,因为它更加自动化,几乎无需...

    struts2的属性配置

    以下是关于Struts2属性配置的详细说明: 1. **struts.xml配置**: Struts2的核心配置文件是`struts.xml`,通常位于类路径(classes根目录下)。这个文件包含了Action配置、拦截器堆栈、常量定义等关键信息。例如,...

    SSH笔记_Struts2配置

    - 自定义异常处理器:通过实现`ExceptionMappingInterceptor`接口,或使用`struts.action.EXCEPTION`常量配置。 10. **国际化** - 使用`ResourceBundle`和`struts.i18n.locale`常量实现多语言支持。 11. **Ajax...

    struts2配置文件加载顺序

    3. **struts.properties**:这是一个属性文件,通常位于项目的类路径根目录下,用于配置全局属性,比如常量定义、错误页面等。 4. **struts.xml**:这是用户自定义的主配置文件,用于定义Action、结果类型、拦截器...

Global site tag (gtag.js) - Google Analytics