1.使用redirect类型的result通过URL传递参数,也可以使用${属性名}动态设置参数;
2.在JSP中使用<s:property value="#parameters.属性名"/>显示接收的参数;
3.通过redirect类型的result传递的参数,不能使用<s:property value="属性名"/>显示接收的参数;
因为redirect不通过Action,ValueStack为空,只能从#parameters中取得参数;
实例:
web.xml:
view source
print?
01.<?xml version="1.0" encoding="UTF-8"?>
02.<web-app version="2.5"
03. xmlns="http://java.sun.com/xml/ns/javaee"
04. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
05. xsi:schemaLocation="http://java.sun.com/xml/ns/javaee ;
06. http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
07. <welcome-file-list>
08. <welcome-file>hello.jsp</welcome-file>
09. </welcome-file-list>
10. <filter>
11. <filter-name>struts2</filter-name>
12. <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
13. </filter>
14. <filter-mapping>
15. <filter-name>struts2</filter-name>
16. <url-pattern>/*</url-pattern>
17. </filter-mapping>
18.</web-app>
struts.xml:
view source
print?
01.<?xml version="1.0" encoding="UTF-8" ?>
02.<!DOCTYPE struts PUBLIC
03. "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
04. "http://struts.apache.org/dtds/struts-2.0.dtd">
05.
06.<struts>
07. <!--
08. <constant name="struts.enable.DynamicMethodInvocation" value="false" />
09. <constant name="struts.devMode" value="false" />
10.
11. <include file="example.xml"/>
12.
13.
14.
15. <package name="default" namespace="/" extends="struts-default">
16. <default-action-ref name="index" />
17. <action name="index">
18. <result type="redirectAction">
19. <param name="actionName">HelloWorld</param>
20. <param name="namespace">/example</param>
21. </result>
22. </action>
23. </package>
24. -->
25.
26. <!-- Add packages here -->
27. <constant name="struts.devMode" value="true" />
28. <constant name="struts.i18n.encoding" value="GBK"></constant>
29. <package name="user" namespace="/" extends="struts-default">
30. <action name="user" class="cn.edu.ahau.mgc.struts2.action.UserAction">
31. <result type="redirect">/addSuccess.jsp?userName=${userName}</result>
32. </action>
33. </package>
34.</struts>
UserAction.java:
view source
print?
01.package cn.edu.ahau.mgc.struts2.action;
02.
03.import com.opensymphony.xwork2.ActionSupport;
04.
05.public class UserAction extends ActionSupport {
06.
07. private String userName;
08.
09. public String add() {
10. return SUCCESS;
11. }
12.
13. public String getUserName() {
14. return this.userName;
15. }
16.
17. public void setUserName(String userName) {
18. this.userName = userName;
19. }
20.
21.}
index.jsp:
view source
print?
01.<%@ page language="java" pageEncoding="GB18030"%>
02.<%
03.String path = request.getContextPath();
04.String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
05.%>
06.
07.<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
08.<html>
09. <head>
10. <base href="<%=basePath%>">
11.
12. <title>ResultParam</title>
13. <meta http-equiv="pragma" content="no-cache">
14. <meta http-equiv="cache-control" content="no-cache">
15. <meta http-equiv="expires" content="0">
16. <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
17. <meta http-equiv="description" content="This is my page">
18. <!--
19. <link rel="stylesheet" type="text/css" href="styles.css">
20. -->
21. </head>
22.
23. <body>
24. User:<br />
25. <form action="user!add" method="post">
26. UserName: <input type="text" name="userName" />
27. <input type="submit" value="Submit" />
28. </form>
29. </body>
30.</html>
addSuccess.jsp:
view source
print?
01.<%@ page language="java" pageEncoding="GB18030"%>
02.<%@ taglib uri="/struts-tags" prefix="s" %>
03.<%
04.String path = request.getContextPath();
05.String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
06.%>
07.
08.<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
09.<html>
10. <head>
11. <base href="<%=basePath%>">
12.
13. <title>Dynamic</title>
14. <meta http-equiv="pragma" content="no-cache">
15. <meta http-equiv="cache-control" content="no-cache">
16. <meta http-equiv="expires" content="0">
17. <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
18. <meta http-equiv="description" content="This is my page">
19. <!--
20. <link rel="stylesheet" type="text/css" href="styles.css">
21. -->
22. </head>
23.
24. <body>
25. User Add Success! <br />
26. UserName:<s:property value="userName"/><br />
27. UserName:<s:property value="#parameters.userName"/>
28. <s:debug></s:debug>
29. </body>
30.</html>
分享到:
相关推荐
总的来说,Struts2提供了多种方式来向结果传递参数,这使得它在处理复杂的业务逻辑和页面跳转时具有高度的可定制性。根据项目的具体需求,选择合适的方法可以提高代码的可维护性和效率。在实践中,结合使用不同的...
在上面的配置中,使用 Redirect-action 配置将结果重定向到一个 Action,同时传递参数 Xml 代码。Redirect 配置则不同,它需要指定完整的 URL 地址。 Struts2 框架中 Result 配置类型非常多样化,每种类型都有其...
2. **RedirectAction**:类似于Redirect,但重定向到另一个Action,可以传递参数,适合实现业务流程跳转。 3. **Stream**:用于处理需要流式传输的内容,比如下载文件或图片,它能直接将数据写入到HTTP响应的输出流...
总结来说,Struts2通过方法上传递参数是其强大的特性之一,它简化了Action类的编写,提高了代码的可读性和可维护性。开发者可以通过直接在方法签名中定义参数来处理用户请求,而无需额外的注解或配置。结合OGNL和...
Struts2 框架中,Action 组件可以通过多种方式接收参数,这些方式包括使用 Action 的属性、使用 DomainModel 和使用 ModelDriven。下面将详细介绍这些方法: 使用 Action 的属性接收参数 在 Struts2 中,可以使用 ...
下面将详细介绍如何在Struts2中实现Action之间的跳转以及如何在跳转过程中传递参数。 #### Struts2框架简介 Struts2是基于Struts1发展起来的一个Web应用框架,它继承了Struts1的优点,同时又克服了其缺点,引入了...
这里的`param`标签用于传递参数,`actionName`和`namespace`分别表示要跳转的Action名和命名空间。 ### 6. 动态结果 动态结果允许根据Action的返回值动态选择Result。例如: ```xml <result name="success">${...
通过分析`redirectActionTest`文件,我们可以深入理解Struts2中`redirectAction` Result类型的实现和应用场景,包括配置、工作流程以及优缺点。实践这些知识可以帮助我们更有效地构建和维护Struts2驱动的Web应用。
总结来说,通过这种方式,我们可以利用AJAX向Struts2 Action传递JSON数组,实现异步数据交互。这在动态更新页面内容、处理表单提交等场景下非常有用。同时,使用JSON作为数据交换格式,使得前后端的数据交换变得更加...
Struts2是一个强大的Java web应用程序框架,用于构建和维护可扩展、模块化和易于管理的Web应用。Result是Struts2框架中的一个核心...通过实践这些Result类型,你可以更深入地理解Struts2框架,并在实际开发中游刃有余。
Struts2的核心组件包括Action、Result、Interceptor(拦截器)等,这些组件通过特定的接口进行交互。Action接口定义了处理用户请求的方法,如execute(),开发者通常会自定义Action类来实现业务逻辑。Result接口则...
9. **异常处理**:Struts2通过全局异常映射(Global Exception Mapping)来统一处理应用程序中抛出的异常,提高代码的可维护性。 10. **国际化与本地化**:Struts2支持多语言环境,可以通过资源包(properties文件...
通过学习和熟练掌握Struts2的Result配置,开发者能够更好地控制Action与视图之间的交互,从而构建出高效、健壮的Java Web应用程序。通过实践和阅读博文(如https://huangminwen.iteye.com/blog/996219),你可以深入...
通过对Struts2中`Result`与`Type`的理解和运用,可以更加灵活地控制页面的流向和展示形式,从而提高应用程序的可维护性和扩展性。希望本文能帮助读者更好地掌握这些核心概念,并在实际项目开发中发挥出应有的作用。
2. 请求到达ActionServlet,ActionServlet通过请求参数找到对应的ActionForm。 3. Struts自动将请求参数值绑定到ActionForm的属性上,这得益于JavaBean规范中的getter和setter方法。 4. ActionServlet调用ActionForm...
在Struts2中,Action类是处理用户请求的核心组件,它负责接收前端传递的参数并进行业务逻辑处理。本文将详细介绍Struts2中Action获取参数的三种主要方式,并通过实际代码示例来阐述每种方法的使用。 1. **通过...
Struts2作为Controller层,通过Action类来实现业务逻辑,并通过配置文件或注解来定义Action与URL的映射关系。 Jquery是一个高效的JavaScript库,简化了HTML文档遍历、事件处理、动画以及Ajax交互。它使得开发者能更...
4. **OGNL(Object-Graph Navigation Language)**:OGNL是Struts2中的默认表达式语言,用于在视图和模型之间传递数据。它允许开发者在JSP或其他视图层中直接访问Action对象的属性,或者设置模型数据。例如,`${user...
通过配置`<result name="success" type="dispatcher">`,Struts2会将控制权传递给指定的JSP页面。 3. FreeMarker Result FreeMarker Result用于处理FreeMarker模板,FreeMarker是一种模板语言,可以方便地与Java...
此外,Struts2还支持通过`@Param`注解来指定参数映射,使得参数注入更加灵活。 4. **内置对象获取**:Struts2提供了一系列内置对象,如`ActionContext`、`ValueStack`、`Session`等,开发者可以直接在Action类中...