struts2 常用常量

 常量可以在struts.xml或struts.properties中配置,建议在struts.xml中配置,两种配置方式如下:
 
 在struts.xml中配置常量
  <struts>
    <constant name="struts.action.extension" value="do,action" />
  </struts>
 
 在struts.properties中配置常量
 struts.action.extension=do,action
 
 因为常量可以在下面多个配置文件中进行定义,所以我们需要了解struts2加载常量的搜索顺序:
 struts-defalut.xml
 struts-plugin.xml
 struts.xml
  struts.properties
 web.xml
 注意:如果在过个文件中配置同一个常量,则后一个文件中配置的常量会阀盖前面文件中配置的常量值。
 

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
 <filter>
      <filter-name>Struts2</filter-name>
      <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
 </filter>
 <filter-mapping>
      <filter-name>Struts2</filter-name>
      <url-pattern>/*</url-pattern>
 </filter-mapping>
  <welcome-file-list>
       <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
</web-app>

  
 
修改请求后缀:struts.action.extension ,默认为action
首先现在web.xml的<url-pattern>/*</url-pattern>中截获请求,如果用户请求的路径不带后缀或者后缀以.action 结尾,这时请求将被转入Struts 2框架处理,否则Struts 2框架将略过该请求的处理。然后在struts.xml中根据定义的后缀,进行筛选,若后缀符合就进行显示,若不符合就会报错。
若在web.xml的<url-pattern>*.action</url-pattern> 则只能以.action为后缀
若在web.xml的<url-pattern>*.do</url-pattern> 则只能以.do为后缀
 
 
 
 
下面介绍一下常用的常量:
 
<!-- 指定默认编码集,作用于HttpServletRequest的setCharacterEncoding方法 和freemarker 、velocity的输出 -->
    <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集成时,指定由spring负责action对象的创建 -->
    <constant name="struts.objectFactory" value="spring" />
 
<!-该属性设置Struts 2是否支持动态方法调用,该属性的默认值是true。如果需要关闭动态方法调用,则可设置该属性为false。最好不使用动态方法调用 -->
<constant name="struts.enable.DynamicMethodInvocation" value="false"/>

http://localhost:8080/struts2/test/list!addUI.action 动态方法调用,不建议使用了
 
<!--上传文件的大小限制-->
<constant name="struts.multipart.maxSize" value=“10701096"/>
 
 

猜你喜欢

转载自slnddd.iteye.com/blog/1766784