zoukankan      html  css  js  c++  java
  • Struts2常量的具体用法实例(一)

    XML代码

    <?xml version="1.0" encoding="UTF-8" ?>  

    <!DOCTYPE struts PUBLIC   

        "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"   

        "http://struts.apache.org/dtds/struts-2.0.dtd">  

    <struts>  

        <!-- 指定Web应用的默认编码集,相当于调用HttpServletRequest的setCharacterEncoding方法 -->  

        <constant name="struts.i18n.encoding" value="UTF-8" />  

        <!--   

            该属性指定需要Struts 2处理的请求后缀,该属性的默认值是action,即所有匹配*.action的请求都由Struts2处理。   

            如果用户需要指定多个请求后缀,则多个后缀之间以英文逗号(,)隔开。

        -->  

        <constant name="struts.action.extension" value="do" />  

        <!-- 设置浏览器是否缓存静态内容,默认值为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配置文件。   

        -->  

  • 相关阅读:
    ssm(spring+springmvc+mybatis)整合之环境配置
    OD机试题
    openpyxl 读取多个excle中的数据并保存到List中
    Python比较2个字典有哪些值不一致
    Python 正则表达式 匹配小数
    开始入驻博客园,审批神速,赞
    VUE入门实例
    VUE使用axios调用后台API接口
    Redis、Memcached和Tair,同为分布式缓存Redis为何更胜一筹?
    Redis可以用作消息队列吗?
  • 原文地址:https://www.cnblogs.com/dreamer-fish/p/3448150.html
Copyright © 2011-2022 走看看