zoukankan      html  css  js  c++  java
  • struts2 常量配置

         struts2的常量配置的方式有很多种,例如在struts.properties,struts.xml,web.xml中。

         通常,struts2框架按如下搜索顺寻加载struts2常量。

            (1) struts-default.xml: 该文件保存在struts2-core-版本号.jar文件中

            (2) struts-plugin.xml

            (3) struts.xml

            (4) struts.properties

            (5) web.xml

            注意: 如果在多个文件中同时配置了同一个常量,后面文件中的配置会覆盖前面文件的配置。

            在struts.xml文件中通过constant元素来配置常量,配置常量需要两个必须的属性,分别为name、value,大家一看也知道这两个属性的含义,一个指定常量的名字,一个指定常量的值,如下例:

           

    <struts>
         <constant name="struts.custom.i18n.resources" value="mess" />
    </struts>

              同样也可以在web.xml文件中通过<filter>元素的子元素<init-param>配置,将上例中的常量配置放在web.xml中如下:

    <filter>
    .......
    <init-param>
         <param-name>struts.custom.i18n.resources</param-name>
         <param-value>mess</param-value>
    </init-param>
    .......
    </filter>

     推荐在struts.xml文件中配置常量。

  • 相关阅读:
    vijos1198:最佳课题选择
    vijos1071:新年趣事之打牌
    vijos1153:猫狗大战
    bzoj3594: [Scoi2014]方伯伯的玉米田
    bzoj2753: [SCOI2012]滑雪与时间胶囊
    bzoj1923: [Sdoi2010]外星千足虫
    bzoj2783: [JLOI2012]树
    bzoj4590: [Shoi2015]自动刷题机
    bzoj4580: [Usaco2016 Open]248
    bzoj4579: [Usaco2016 Open]Closing the Farm
  • 原文地址:https://www.cnblogs.com/binger/p/struts_constant.html
Copyright © 2011-2022 走看看