您现在的位置是:网站首页> 编程资料编程资料
struts2 action跳转调用另一个程序_JSP编程_
2023-05-25
317人已围观
简介 struts2 action跳转调用另一个程序_JSP编程_
目的:主要为了在一个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.xml
[html]
复制代码 代码如下:
"http://struts.apache.org/dtds/struts-2.0.dtd">
www.jb51.net
analysisAction
409600
text/html,application/msword
Spring.xml
[html]
复制代码 代码如下:
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]
复制代码 代码如下:
不保存前一个action的参数可以用这种方法:
[java]
复制代码 代码如下:
您可能感兴趣的文章:
