struts2视频学习笔记 07-08(为Action的属性注入值,指定需要Struts 2处理的请求后缀,常用常量)

时间:2022-06-28 14:45:35

struts2视频学习笔记 07-08(为Action的属性注入值,指定需要Struts 2处理的请求后缀,常用常量) 课时7

  • 为Action的属性注入值(增加灵活性,适用于经常更改的参数)

  Struts2为Action中的属性提供了依赖注入功能,在struts2的配置文件中,我们可以很方便地为Action中的属性注入值。注意:属性必须提供setter方法。

 <action name="list" class="tutorial.HelloWorld" method="other">
<param name="save">/image</param>
<result name="success">/Test.jsp</result>
</action>

struts2视频学习笔记 07-08(为Action的属性注入值,指定需要Struts 2处理的请求后缀,常用常量)   struts2视频学习笔记 07-08(为Action的属性注入值,指定需要Struts 2处理的请求后缀,常用常量)

struts2视频学习笔记 07-08(为Action的属性注入值,指定需要Struts 2处理的请求后缀,常用常量) 课时8

  • 指定需要Struts 2处理的请求后缀
 <constant name="struts.action.extension" value="do"></constant>

    多个后缀

 <constant name="struts.action.extension" value="do,action"></constant>
  • 常量可以在struts.xml或struts.properties中配置,建议在struts.xml中配置,两种配置方式如下:
    在struts.xml文件中配置常量
    <struts>
        <constant name="struts.action.extension" value="do"/>
    </struts>

    在struts.properties中配置常量
    struts.action.extension=do

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

  • 常用的常量介绍:

1 <!-- 指定默认编码集,作用于HttpServletRequest的setCharacterEncoding方法 和freemarker 、velocity的输出 -->

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

2 <!-- 该属性指定需要Struts 2处理的请求后缀,该属性的默认值是action,即所有匹配*.action的请求都由Struts2处理。
    如果用户需要指定多个请求后缀,则多个后缀之间以英文逗号(,)隔开。 -->

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

3<!-- 设置浏览器是否缓存静态内容,默认值为true(生产环境下使用),开发阶段最好关闭 -->
    <constant name="struts.serve.static.browserCache" value="false"/>

4<!-- 当struts的配置文件修改后,系统是否自动重新加载该文件,默认值为false(生产环境下使用),开发阶段最好打开 -->
    <constant name="struts.configuration.xml.reload" value="true"/>

5 <!-- 开发模式下使用,这样可以打印出更详细的错误信息 -->
    <constant name="struts.devMode" value="true" />

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

7<!– 与spring集成时,指定由spring负责action对象的创建 -->
    <constant name="struts.objectFactory" value="spring" />

8<!–该属性设置Struts 2是否支持动态方法调用,该属性的默认值是true。如果需要关闭动态方法调用,则可设置该属性为false。 -->
    <constant name="struts.enable.DynamicMethodInvocation" value="false"/>

9 <!--上传文件的总大小限制-->
    <constant name="struts.multipart.maxSize" value=“10701096"/>