在struts2-core-2.1.8.1.jar的org.apache.struts2包下面的default.properties资源文件里可以查到常用的常量配置,这些不用刻意的记住:忘记的时候可以查询。总结长用的的常量配置如下面:
 <!-- 设置url请求后缀 -->
<constant name="struts.action.extension" value="do,action,html,htm"></constant>
<!-- 指定Web应用的默认编码集,相当于调用HttpServletRequest的setCharacterEncoding方法 -->
<constant name="struts.i18n.encoding" value="UTF-8" />
<!-- 设置浏览器是否缓存静态内容,默认值为true(生产环境下使用),开发阶段最好关闭 -->
<constant name="struts.serve.static.browserCache" value="false" />
<!-- 当struts的配置文件修改后,系统是否自动重新加载该文件,默认值为false(生产环境下使用),开发阶段最好打开 -->
<constant name="struts.configuration.xml.reload" value="true" />
<!-- 开发模式下使用,这样可以打印出更详细的错误信息 -->
<constant name="struts.devMode" value="true" /> 
<!-- 默认的视图主题 -->
<constant name="struts.ui.theme" value="simple" />
<!-- spring 托管 -->
<constant name="struts.objectFactory" value="spring" />

<!--   
        指定加载struts2配置文件管理器,默认为org.apache.struts2.config.DefaultConfiguration   
        开发者可以自定义配置文件管理器,该类要实现Configuration接口,可以自动加载struts2配置文件。   
    -->  
    <constant name="struts.configuration"  
        value="org.apache.struts2.config.DefaultConfiguration" />  
  
    <!-- 设置默认的locale和字符编码 -->  
       <constant name="struts.locale" value="zh_CN" />  
       <constant name="struts.i18n.encoding" value="GBK" />  
  
    <!-- 指定Struts的工厂类 -->  
    <constant name="struts.objectFactory" value="spring"></constant>  
  
    <!--   
        指定spring框架的装配模式,装配方式有: name, type, auto, and constructor (name   
        是默认装配模式)   
    -->  
    <constant name="struts.objectFactory.spring.autoWire" value="name" />  
  
    <!-- 该属性指定整合spring时,是否对bean进行缓存,值为true or false,默认为true -->  
    <cosntant name="struts.objectFactory.spring.useClassCache" />  
 
    <!-- 指定类型检查,包含tiger和notiger -->  
    <cosntant name="struts.objectTypeDeterminer" value="tiger" />  
 
    <!-- 该属性指定处理 MIME-type multipart/form-data,文件上传 --> 
     <constant name="struts.multipart.parser" value="cos" />  
     <constant name="struts.multipart.parser" value="pell" />  
     <constant name="struts.multipart.parser" value="jakarta" />  
 
    <!-- 指定上传文件时的临时目录,默认使用 javax.servlet.context.tempdir -->  
    <constant name="struts.multipart.saveDir" value="/tmpuploadfiles" />  
  
    <!-- 该属性指定Struts 2文件上传中整个请求内容允许的最大字节数 -->  
   <constant name="struts.multipart.maxSize" value="2097152" />  
  
    <!--   
        该属性指定Struts2应用加载用户自定义的属性文件,该自定义属性文件指定的属性不会覆盖   
        struts.properties文件中指定的属性。如果需要加载多个自定义属性文件,多个自定义属性文   
        件的文件名以英文逗号(,)隔开。(也就是说不要改写struts.properties!)   
    -->  
    <constant name="struts.custom.properties"  
        value="application,org/apache/struts2/extension/custom" />  
           
    <!-- 指定请求url与action映射器,默认为org.apache.struts2.dispatcher.mapper.DefaultActionMapper -->  
    <constant name="struts.mapper.class" value="org.apache.struts2.dispatcher.mapper.DefaultActionMapper" />

<!-- 设置是否支持动态方法调用,true为支持,false不支持. -->  
    <constant name="struts.enable.DynamicMethodInvocation" value="true" />  
           
    <!-- 设置是否可以在action中使用斜线,默认为false不可以,想使用需设置为true. -->  
    <constant name="struts.enable.SlashesInActionNames" value="true" />  
       
    <!-- 是否允许使用表达式语法,默认为true. -->  
    <constant name="struts.tag.altSyntax" value="true" />  

<!-- 设置是否每次请求,都重新加载资源文件,默认值为false. -->  
    <cosntant name="struts.i18n.reload" value="false" />  
  
    <!-- 标准的UI主题,默认的UI主题为xhtml,可以为simple,xhtml或ajax -->  
    <cosntant name="struts.ui.theme" value="xhtml" />  
           
    <!-- 模板目录 -->  
    <cosntant name="struts.ui.templateDir" value="template" /> 
 
    <!-- 设置模板类型. 可以为 ftl, vm, or jsp -->  
    <cosntant name="struts.ui.templateSuffix" value="ftl" />  
  
    <!-- 定位velocity.properties 文件. 默认velocity.properties -->  
    <cosntant name="struts.velocity.configfile" value="velocity.properties" />  
       
    <!-- 设置velocity的context. -->  
   <cosntant name="struts.velocity.contexts" value="...." />  
       
    <!-- 定位toolbox -->  
    <cosntant name="struts.velocity.toolboxlocation" value="...." />

<!-- 指定web应用的端口 -->  
    <cosntant name="struts.url.http.port" value="80" />  
       
    <!-- 指定加密端口 -->          
   <cosntant name="struts.url.https.port" value="443" />  
  
     <!-- 设置生成url时,是否包含参数.值可以为: none,get or all -->  
    <cosntant name="struts.url.includeParams" value="get" />  
  
    <!-- 设置要加载的国际化资源文件,以逗号分隔. -->  
      <cosntant name="struts.custom.i18n.resources" value="application" />  
        
    <!-- 对于一些web应用服务器不能处理HttpServletRequest.getParameterMap(),   
        像 WebLogic,Orion, and OC4J等,须设置成true,默认为false. -->  
    <cosntant name="struts.dispatcher.parametersWorkaround" value="false" />     
  
    <!-- 指定freemarker管理器 -->  
    <cosntant name="struts.freemarker.manager.classname" value="org.apache.struts2.views.freemarker.FreemarkerManager" />

  <!-- 设置是否对freemarker的模板设置缓存,效果相当于把template拷贝到 WEB_APP/templates. -->  
     <cosntant name="struts.freemarker.templatesCache" value="false" />

  <!-- 通常不需要修改此属性. -->  
  <cosntant name="struts.freemarker.wrapper.altMap" value="true" />

  <!-- 指定xslt result是否使用样式表缓存.开发阶段设为true,发布阶段设为false. -->  
  <cosntant name="struts.xslt.nocache" value="false" />

  <!-- 设置struts自动加载的文件列表. -->  
  <cosntant name="struts.configuration.files" value="struts-default.xml,struts-plugin.xml,struts.xml" />

  <!-- 设定是否一直在最后一个slash之前的任何位置选定namespace. -->  
  <cosntant name="struts.mapper.alwaysSelectFullNamespace" value="false" />


<!-- 默认的视图主题 -->
<constant name="struts.ui.theme" value="simple" />
<!-- spring 托管 -->
<constant name="struts.objectFactory" value="spring" />

<!--   
        指定加载struts2配置文件管理器,默认为org.apache.struts2.config.DefaultConfiguration   
        开发者可以自定义配置文件管理器,该类要实现Configuration接口,可以自动加载struts2配置文件。   
    -->  
    <constant name="struts.configuration"  
        value="org.apache.struts2.config.DefaultConfiguration" />  
  
    <!-- 设置默认的locale和字符编码 -->  
       <constant name="struts.locale" value="zh_CN" />  
       <constant name="struts.i18n.encoding" value="GBK" />  
  
    <!-- 指定Struts的工厂类 -->  
    <constant name="struts.objectFactory" value="spring"></constant>  
  
    <!--   
        指定spring框架的装配模式,装配方式有: name, type, auto, and constructor (name   
        是默认装配模式)   
    -->  
    <constant name="struts.objectFactory.spring.autoWire" value="name" />  
  
    <!-- 该属性指定整合spring时,是否对bean进行缓存,值为true or false,默认为true -->  
    <cosntant name="struts.objectFactory.spring.useClassCache" />  
 
    <!-- 指定类型检查,包含tiger和notiger -->  
    <cosntant name="struts.objectTypeDeterminer" value="tiger" />  
 
    <!-- 该属性指定处理 MIME-type multipart/form-data,文件上传 --> 
     <constant name="struts.multipart.parser" value="cos" />  
     <constant name="struts.multipart.parser" value="pell" />  
     <constant name="struts.multipart.parser" value="jakarta" />  
 
    <!-- 指定上传文件时的临时目录,默认使用 javax.servlet.context.tempdir -->  
    <constant name="struts.multipart.saveDir" value="/tmpuploadfiles" />  
  
    <!-- 该属性指定Struts 2文件上传中整个请求内容允许的最大字节数 -->  
   <constant name="struts.multipart.maxSize" value="2097152" />  
  
    <!--   
        该属性指定Struts2应用加载用户自定义的属性文件,该自定义属性文件指定的属性不会覆盖   
        struts.properties文件中指定的属性。如果需要加载多个自定义属性文件,多个自定义属性文   
        件的文件名以英文逗号(,)隔开。(也就是说不要改写struts.properties!)   
    -->  
    <constant name="struts.custom.properties"  
        value="application,org/apache/struts2/extension/custom" />  
           
    <!-- 指定请求url与action映射器,默认为org.apache.struts2.dispatcher.mapper.DefaultActionMapper -->  
    <constant name="struts.mapper.class" value="org.apache.struts2.dispatcher.mapper.DefaultActionMapper" />

<!-- 设置是否支持动态方法调用,true为支持,false不支持. -->  
    <constant name="struts.enable.DynamicMethodInvocation" value="true" />  
           
    <!-- 设置是否可以在action中使用斜线,默认为false不可以,想使用需设置为true. -->  
    <constant name="struts.enable.SlashesInActionNames" value="true" />  
       
    <!-- 是否允许使用表达式语法,默认为true. -->  
    <constant name="struts.tag.altSyntax" value="true" />  

<!-- 设置是否每次请求,都重新加载资源文件,默认值为false. -->  
    <cosntant name="struts.i18n.reload" value="false" />  
  
    <!-- 标准的UI主题,默认的UI主题为xhtml,可以为simple,xhtml或ajax -->  
    <cosntant name="struts.ui.theme" value="xhtml" />  
           
    <!-- 模板目录 -->  
    <cosntant name="struts.ui.templateDir" value="template" /> 
 
    <!-- 设置模板类型. 可以为 ftl, vm, or jsp -->  
    <cosntant name="struts.ui.templateSuffix" value="ftl" />  
  
    <!-- 定位velocity.properties 文件. 默认velocity.properties -->  
    <cosntant name="struts.velocity.configfile" value="velocity.properties" />  
       
    <!-- 设置velocity的context. -->  
   <cosntant name="struts.velocity.contexts" value="...." />  
       
    <!-- 定位toolbox -->  
    <cosntant name="struts.velocity.toolboxlocation" value="...." />

<!-- 指定web应用的端口 -->  
    <cosntant name="struts.url.http.port" value="80" />  
       
    <!-- 指定加密端口 -->          
   <cosntant name="struts.url.https.port" value="443" />  
  
     <!-- 设置生成url时,是否包含参数.值可以为: none,get or all -->  
    <cosntant name="struts.url.includeParams" value="get" />  
  
    <!-- 设置要加载的国际化资源文件,以逗号分隔. -->  
      <cosntant name="struts.custom.i18n.resources" value="application" />  
        
    <!-- 对于一些web应用服务器不能处理HttpServletRequest.getParameterMap(),   
        像 WebLogic,Orion, and OC4J等,须设置成true,默认为false. -->  
    <cosntant name="struts.dispatcher.parametersWorkaround" value="false" />     
  
    <!-- 指定freemarker管理器 -->  
    <cosntant name="struts.freemarker.manager.classname" value="org.apache.struts2.views.freemarker.FreemarkerManager" />

  <!-- 设置是否对freemarker的模板设置缓存,效果相当于把template拷贝到 WEB_APP/templates. -->  
     <cosntant name="struts.freemarker.templatesCache" value="false" />

  <!-- 通常不需要修改此属性. -->  
  <cosntant name="struts.freemarker.wrapper.altMap" value="true" />

  <!-- 指定xslt result是否使用样式表缓存.开发阶段设为true,发布阶段设为false. -->  
  <cosntant name="struts.xslt.nocache" value="false" />

  <!-- 设置struts自动加载的文件列表. -->  
  <cosntant name="struts.configuration.files" value="struts-default.xml,struts-plugin.xml,struts.xml" />

  <!-- 设定是否一直在最后一个slash之前的任何位置选定namespace. -->  
  <cosntant name="struts.mapper.alwaysSelectFullNamespace" value="false" />

Struts2 常用的常量配置的更多相关文章

  1. struts2常用的常量constant

    常用的常量配置  struts.serve.static.browserCache 该属性设置浏览器是否缓存静态内容.当应用处于开发阶段时,我们希望每次请求都获得服务器的最新响应,则可设置该属性为fa ...

  2. struts2常用的常量constant(转)

    原文地址:http://blog.csdn.net/wfcaven/article/details/5937548 常用的常量配置  struts.serve.static.browserCache  ...

  3. Struts2配置文件复用代码【web.xml、struts.xml、常量配置】

    web.xml的分发器代码: <!-- 引入struts核心过滤器 --> <filter> <filter-name>struts2</filter-nam ...

  4. Struts2-整理笔记(二)常量配置、动态方法调用、Action类详解

    1.修改struts2常量配置(3种) 第一种 在str/struts.xml中添加constant标签 <struts> <!-- 如果使用使用动态方法调用和include冲突 - ...

  5. Struts2 常量配置

    除了action的配置,struts还有其他的一些配置,比如编码方式. 这些配置用键值对来表示,键是固定的,是常量,所以也叫做常量配置. 常量配置有5种方式,Struts会按以下顺序依次搜索加载常量( ...

  6. Struts2配置拦截器,struts2加载常量时的搜索顺序

    1:struts2加载常量时的搜索顺序 1.Struts-default.xml 2.Struts-plugin.xml 3.Struts.xml 4.Struts-properties(自己创建的) ...

  7. 【Struts2学习笔记-3】常量配置

    Struts2常量 配置Struts2常量值有3个地方,1)在struts.properties文件中配置常量:2)在web.xml文件中配置FileterDispatcher指定初始化参数来配置常量 ...

  8. struts2中的constant常量配置

    struts2中的constant配置详解 本文主要讲解一下struts2中的constant常量配置,内容主要来自于互联网的整理.<?xml version="1.0" e ...

  9. Struts2笔记——struts.xml配置详解

    访问HelloWorld应用的路径的设置 * 在struts1中,通过<action path=“/primer/helloWorldAction.action”>节点的path属性指定访 ...

随机推荐

  1. WEB应用中的SESSION知多少?

    作为一名WEB开发程序员,对session的理解是最基础的,但是现状是WEB程序员遍地都是,随便一划拉一大把,不过估计能把session能透彻理解的人应该不是很多,起码我之前对此是知之甚少,偶然看到的 ...

  2. 【风马一族_git_github】使用Github搭建个人网站

    个人网站 访问 https://用户名.github.io  ( 风马一族的Github网站 ) 搭建步骤 1)创建个人站点-->新建仓库(注:仓库名必须是[用户名.github.io]) 2) ...

  3. 《samba搭建win客户端和linux客户端的区别》

    samba服务的搭建 客户的使用系统的不同也导致测试结果的不同. linux系统客户端: security = user or share smbclient -L //192.168.7.113/w ...

  4. Linux学习笔记之VI(VIM)编辑器

    百度关于vi的资料 http://baike.baidu.com/view/908054.htm 关于vi 和vim的介绍可以在上面的网址看到. 1   进入和退出vi 进入:在终端命令行输入 vi ...

  5. Hibernate中的对象状态,及自动更新原因

    Hibernate的对象有三种状态,分别为:瞬时状态 (Transient). 持久化状态(Persistent).游离状态(Detached).对它的深入理解,才能更好的理解hibernate的运行 ...

  6. Mysql数据库常用的命令 数据备份 恢复 远程

    远程数据库 格式: mysql -h主机地址 -u用户名 -p用户密码数据库 mysql -h 42.51.150.68 -u yang -p discuz mysql设置密码 mysql>us ...

  7. [react native] Error loading page

    如上图显示的错误,解决方法如下: 在react native ios项目的info.plist文件中,新增一个属性. 在Info.plist中添加NSAppTransportSecurity类型Dic ...

  8. require.js入门指南(一)

    *:first-child { margin-top: 0 !important; } body>*:last-child { margin-bottom: 0 !important; } /* ...

  9. SetTimeOut jquery的作用

    1. SetTimeOut() 1.1 SetTimeOut()语法例子 1.2 用SetTimeOut()执行Function 1.3 SetTimeOut()语法例子 1.4 设定条件使SetTi ...

  10. hadoop启动后jps 没有namenode

      hadoop集群启动后,jps 发现没有namenode. 网上查了下,这问题可能是由于两次或两次以上格式化NameNode造成的. 因为我的是刚刚新搭建的集群,里面没什么资料,所以我直接删除各个 ...