Struts 2的配置文件

Struts 2的配置文件

 

Struts 2创建系统的Action代理时,需要使用Struts 2的配置文件。

Struts 2的配置文件有两份:

配置Actionstruts.xml文件。

配置Struts 2全局属性的struts.properties文件。

struts.xml文件内定义了Struts 2的系列Action,定义Action时,指定该Action的实现类,并定义该Action处理结果与视图资源之间的映射关系。

下面是struts.xml配置文件的示例:

<struts>

                                  <!-- Struts 2Action都必须配置在package -->

                                  <package name="default" extends="struts-default">

                                     <!-- 定义一个LogonAction,实现类为lee.Logon -->

                                   <action name="Logon" class="lee.Logon">

                                         <!-- 配置Action返回input时转入/pages/Logon.jsp页面 -->

                                    <result name="input">/pages/Logon.jsp</result>

                                         <!-- 配置Action返回cancel时重定向到WelcomeAction-->

                                    <result name="cancel" type="redirect-action">Welcome</result>

                                         <!-- 配置Action返回success时重定向到MainMenuAction -->

                                    <result type="redirect-action">MainMenu</result>

                                         <!-- 配置Action返回expired时进入ChangePasswordAction -->

                                    <result name="expired" type="chain">ChangePassword</result>

                                   </action>

                                     <!-- 定义LogoffAction,实现类为lee.Logoff -->

                                   <action name="Logoff" class=" lee.Logoff">

                                         <!-- 配置Action返回success时重定向到MainMenuAction -->

                                    <result type="redirect-action">Welcome</result>

                                   </action>

     </package>

</struts>

在上面的struts.xml文件中,定义了两个Action。定义Action时,不仅定义了Action的实现类,而且的定义Action的处理结果时,指定了多个resultresult元素指定execute方法返回值和视图资源之间的映射关系。对于如下配置片段:

<result name="cancel" type="redirect-action">Welcome</result>

表示当execute方法返回cancel的字符串时,跳转到WelcomeAction。定义result元素时,可以指定两个属性:typename。其中name指定了execute方法返回的字符串,而type指定转向的资源类型,此处转向的资源可以是JSP,也可以是FreeMarker等,甚至是另一个Action——这也是Struts 2可以支持多种视图技术的原因。

除此之外,Struts 2还有一个配置Struts 2全局属性的Properties文件:struts.properties。该文件的示例如下:

#指定Struts 2处于开发状态

struts.devMode = false

//指定当Struts 2配置文件改变后,Web框架是否重新加载Struts 2配置文件

struts.configuration.xml.reload=true

正如上面见到的,struts.properties文件的形式是系列的keyvalue对,它指定了Struts 2应用的全局属性。

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值