struts详细配置

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"struts-2.0.dtd">
<struts>
<!-- 全局result:有很多时候一个result可供很多action使用,这时可以使用global-results标签来定义全局的result -->
<package name="base" extends="struts-default">
<global-results>
<result name="msg">/message.jsp</result>
</global-results>
</package>
<package name="helloWord" namespace="/helloWord" extends="base" >
<!-- 访问路径: http://localhost:8083/struts2_1/helloWord/manage.do -->
<action name="manage" class="com.ljq.action.HelloWordAction" method="msg"></action>
<!-- 访问路径: http://localhost:8083/struts2_1/helloWord/listHelloWord.do
http://localhost:8083/struts2_1/helloWord/msgHelloWord.do
-->
<action name="*HelloWord" class="com.ljq.action.HelloWordAction" method="{1}">
<!-- 注意:在result中还可以使用${属性名}表达式访问action中的属性,表达式里的属性名对应action中的属性名 -->
<result name="list" type="redirect">/index.jsp?username=${username}</result>
</action>
</package>
</struts>

===========================

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"struts-2.0.dtd">

<struts>
<!-- 该属性指定需要Struts2处理的请求后缀,该属性的默认值是action,即所有匹配*.action的请求都由Struts2处理。
如果用户需要指定多个请求后缀,则多个后缀之间以英文逗号(,)隔开。 -->
<constant name="struts.action.extension" value="do,php" />
<!--解决乱码 -->
<constant name="struts.i18n.encoding" value="UTF-8" />
<!-- 设置浏览器是否缓存静态内容,默认值为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" />
<!--<constant name="struts.objectFactory" value="spring" />-->
<!-- 动态方法调用和使用通配符定义 -->
<!--该属性设置Struts2是否支持动态方法调用,该属性的默认值为true。如果需要关闭动态方法调用,则可设置该为false -->
<!--<constant name="struts.enable.DynamicMethodInvocation" value="false" />-->
<!--上传文件的大小设置(这里的大小指的是总大小)-->
<!--<constant name="struts.multipart.maxSize" value="10701096" />-->

<!-- 引入 -->
<include file="helloworld_struts.xml" />
</struts>

<!--注意:Struts2读取到Struts2.xml的内容后,以JavaBean形式存放在内存中。-->
<!--以后Struts2对用户的每次请求处理将使用内存中的数据,而不是每次都读取Struts2.xml文件-->
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值