struts2 action跳轉(zhuǎn)調(diào)用另一個(gè)程序
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> <!-- 指定為開(kāi)發(fā)模式(默認(rèn)值為false) -->
<constant name="struts.devMode" value="false" />
<constant name="struts.i18n.encoding" value="UTF-8"/>
<constant name="struts.custom.i18n.resources" value="message"></constant>
<!-- 上傳文件臨時(shí)文件位置 -->
<constant name="struts.multipart.saveDir" value="c:\"></constant>
<!--
<include file="com/lanstar/config/struts/struts_user.xml"/>
--> www.dbjr.com.cn
<package name="resume" namespace="/" extends="struts-default">
<action name="analysisAction" class="analysisAction">
<result name = "success">/jsp/uploadresult.jsp</result>
</action>
<action name="upload" class = "uploadAction">
<result name="success" type= "chain">
<param name="actionName">analysisAction</param>
</result>
<!--<result name = "success">/jsp/uploadresult.jsp</result>
--><result name = "input">/jsp/Upload.jsp</result>
<result name="error">/jsp/error/error.jsp</result>
<interceptor-ref name="fileUpload">
<!-- 單個(gè)上傳文件的最大值-->
<param name="maximumSize">409600</param>
<!-- 只能上傳的文件的類型,可到tomcat的web-xml中查看各種文件類型-->
<param name="allowedTypes">text/html,application/msword</param>
</interceptor-ref>
<interceptor-ref name="defaultStack"></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
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">
<!-- service start -->
<bean id="uploadAction" class="com.lanstar.resume.action.UploadAction" scope="prototype">
</bean>
<bean id="analysisAction" class="com.lanstar.resume.action.AnalysisAction" scope="prototype">
</bean>
</beans>
兩種方式:
需要保存前一個(gè)action的屬性信息時(shí)使用:
[java]
<result name="success" type= "chain"><param name="actionName">analysisAction</param></result>
不保存前一個(gè)action的參數(shù)可以用這種方法:
[java]
<result name="success" type= "redirect-action"><param name="actionName">analysisAction</param></result>
- 詳解在Java的Struts2框架中配置Action的方法
- ajax交互Struts2的action(客戶端/服務(wù)器端)
- struts2中action實(shí)現(xiàn)ModelDriven后無(wú)法返回json的解決方法
- Struts2中Action中是否需要實(shí)現(xiàn)Execute方法
- 用js模擬struts2的多action調(diào)用示例
- 在Action中以Struts2的方式輸出JSON數(shù)據(jù)的實(shí)例
- Struts2之Action接收請(qǐng)求參數(shù)和攔截器詳解
- Struts2 ActionContext 中的數(shù)據(jù)詳解
- struts2通過(guò)action返回json對(duì)象
- Struts2學(xué)習(xí)教程之Action類如何訪問(wèn)WEB資源
相關(guān)文章
Jdbc連Sybase數(shù)據(jù)庫(kù)的幾種方法
Jdbc連Sybase數(shù)據(jù)庫(kù)的幾種方法...2006-10-10
JSP基于JDBC的數(shù)據(jù)庫(kù)連接類實(shí)例
這篇文章主要介紹了JSP基于JDBC的數(shù)據(jù)庫(kù)連接類,以實(shí)例形式較為詳細(xì)的分析了JDBC連接數(shù)據(jù)庫(kù)的實(shí)現(xiàn)技巧,非常具有實(shí)用價(jià)值,需要的朋友可以參考下2015-11-11
JBuilder2005實(shí)戰(zhàn)JSP之登錄頁(yè)面實(shí)現(xiàn)代碼[圖]
JBuilder2005實(shí)戰(zhàn)JSP之登錄頁(yè)面實(shí)現(xiàn)方法, 需要的朋友可以參考下2012-08-08
使用maven+eclipse搭建struts2開(kāi)發(fā)環(huán)境
Struts 2是Apache基金會(huì)的明星級(jí)產(chǎn)品,提供了對(duì)MVC的一個(gè)清晰的實(shí)現(xiàn),下面就為大家介紹一下使用maven+eclipse搭建struts2開(kāi)發(fā)環(huán)境的方法2014-01-01
利用jsp+mysql實(shí)現(xiàn)好看的登錄與注冊(cè)頁(yè)面(動(dòng)態(tài)背景)
最近在學(xué)jsp連接數(shù)據(jù)庫(kù),存?zhèn)€檔吧,下面這篇文章主要給大家介紹了關(guān)于利用jsp+mysql實(shí)現(xiàn)好看的登錄與注冊(cè)頁(yè)面(動(dòng)態(tài)背景)的相關(guān)資料,文中通過(guò)代碼介紹的非常詳細(xì),需要的朋友可以參考下2024-01-01
實(shí)戰(zhàn) J2EE 開(kāi)發(fā)購(gòu)物網(wǎng)站 二
實(shí)戰(zhàn) J2EE 開(kāi)發(fā)購(gòu)物網(wǎng)站 二...2006-10-10
JDBCTM 指南:入門(mén)6-PreparedStatement
JDBCTM 指南:入門(mén)6-PreparedStatement...2006-10-10
Windows下JSP開(kāi)發(fā)環(huán)境的配置
Windows下JSP開(kāi)發(fā)環(huán)境的配置...2006-10-10

