struts-config.xml

来源:互联网 发布:软件评测师报名时间 编辑:程序博客网 时间:2024/06/07 12:44
 
<?xml version="1.0" encoding="utf-8"?><!DOCTYPE struts-config PUBLIC          "-//Apache Software Foundation//DTD Struts Configuration 1.3//EN"          "http://struts.apache.org/dtds/struts-config_1_3.dtd"><struts-config><!-- 测试 -->    <action-mappings>        <action path="/ibusAction" scope="request" validate="false"             type="com.smart.ibus.client.web.IBUSAction" parameter="method">            <forward name="ibusSuccess" path="/ibusSuccess.jsp"></forward>            <forward name="ibusFailure" path="/ibusFailure.jsp"></forward>        </action>                <action path="/BOControllerAction" scope="request" validate="false"             type="com.smart.ibus.client.web.BOControllerAction" parameter="method">            <forward name="success" path="/layout_attribute.jsp"></forward>            <forward name="failure" path="/ibusFailure.jsp"></forward>        </action>                <!-- 文件资源管理控制类 --><action path="/FileMgrAction" scope="request" validate="false"type="com.smart.ibus.client.web.FileMgrAction" parameter="method"><forward name="success" path="/layout_attribute.jsp"></forward><forward name="failure" path="/ibusFailure.jsp"></forward></action><!-- 文件上传 --><action path="/upload" scope="request" validate="false" type="com.smart.ibus.ap.components.impl.FileManagerAction" parameter="method"><forward name="download" path="/components/upload/download.jsp" /><forward name="success"  path="/components/upload/success.jsp" /></action>                    <action path="/InvokerAction"  type="com.smart.ibus.ap.components.invokerclient.InvokerTestAction" />        <action path="/TaskAction"  type="com.smart.ibus.ap.components.taskclient.TaskTestAction" />            </action-mappings>    <message-resources parameter="" /></struts-config>          

原创粉丝点击