struts2 action跳转调用另一个程序

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


"http://struts.apache.org/dtds/struts-2.0.dtd">






www.jb51.net


/jsp/uploadresult.jsp



analysisAction

/jsp/Upload.jsp
/jsp/error/error.jsp


409600

text/html,application/msword






Spring.xml
[html]
复制代码 代码如下:


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
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-2.5.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">







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

analysisAction

不保存前一个action的参数可以用这种方法:
[java]
复制代码 代码如下:

analysisAction

你可能感兴趣的:(struts2 action跳转调用另一个程序)