struts2-7指定struts2处理的请求后缀

指定需要struts2处理的请求后缀:

struts2都是默认使用.action后缀访问action,默认后缀可以通过常量“struts.action.extension”进行修改。例如:可以配置struts2只处理以.do为后缀的请求路径:

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

<!-- START SNIPPET: xworkSample -->
<struts>
    <constant name="struts.action.extension" value="do"></constant>
    <package name="hello" extends="struts-default" namespace="/test">
        <action name="helloworld" class="com.gz.action.HelloWorldAction" method="execute">
            <param name="savePath">/images</param>
            <result name = "success">/WEB-INF/test/message.jsp</result>
        </action>
    </package>
</struts>
<!-- END SNIPPET: xworkSample -->

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

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

常量可以在struts.xml或struts.properties中配置,建议在struts.xml中配置两种配置方式如下:
在struts.xml文件中配置常量:

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

在struts.properties文件中配置常量:

struts.action.extension=do

常量可以在以下多个配置文件中进行定义,了解struts2加载常量的搜索顺序:
struts-default.xml
struts-plugin.xml
struts.xml
struts.properties
web.xml
如果多个文件中配置了同一个常量,则后一个文件中的常量值会覆盖前面文件中配置的常量值。

常用常量的介绍:

<!--指定默认编码集,作用于httpservletrequest的setcharacterencoding方法和free marker、velocity的输出-->
<constant name = "struts.i18n.encoding" value = "UTF-8"/>
<!--该属性指定需要struts2处理的请求后缀,该属性的默认值是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"/>
<!--该属性设置struts2是否支持动态方法调用,该属性的默认值为true,如果要关闭动态方法调用,可设置改属性为false-->
<constant name = "struts.enable.DynamicMethodInvocation" value = "false"/>
<!--上传文件的大小限制-->
<constant name = "struts.multipart.maxSize" value = "10701096"/>

猜你喜欢

转载自blog.csdn.net/weixin_39660593/article/details/78781188