struts2 action跳转调用另一个程序

目的:主要为了在一个Action成功后跳转调用另一个程序。
Struts2.xml
[html]

复制代码 代码如下:


<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts> <!-- 指定为开发模式(默认值为false) -->
<constant value="false" />
<constant value="UTF-8"/>
<constant value="message"></constant>
<!-- 上传文件临时文件位置 -->
<constant value="c:\"></constant>
<!--
<include file="com/lanstar/config/struts/struts_user.xml"/>
-->
<package namespace="https://www.jb51.net/" extends="struts-default">
<action>
<result name = "success">/jsp/uploadresult.jsp</result>
</action>
<action class = "uploadAction">
<result type= "chain">
<param>analysisAction</param>
</result>
<!--<result name = "success">/jsp/uploadresult.jsp</result>
--><result name = "input">/jsp/Upload.jsp</result>
<result>/jsp/error/error.jsp</result>
<interceptor-ref>
<!-- 单个上传文件的最大值-->
<param>409600</param>
<!-- 只能上传的文件的类型,可到tomcat的web-xml中查看各种文件类型-->
<param>text/html,application/msword</param>
</interceptor-ref>
<interceptor-ref></interceptor-ref>
</action>
</package>
</struts>


Spring.xml
[html]

复制代码 代码如下:


<!--
- Application context definition for JPetStore's business layer.
- Contains bean references to the transaction manager and to the DAOs in
- dataAccessContext-local/jta.xml (see web.xml's "contextConfigLocation").
-->
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans




">
<!-- service start -->
<bean scope="prototype">
</bean>
<bean scope="prototype">
</bean>
</beans>


两种方式:
需要保存前一个action的属性信息时使用:
[java]

复制代码 代码如下:


<result type= "chain"><param>analysisAction</param></result>


不保存前一个action的参数可以用这种方法:
[java]

复制代码 代码如下:


<result type= "redirect-action"><param>analysisAction</param></result>

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wzfxsg.html