一、概念。

在Action映射配置中,Scope属性可以取值为:request或session。Scope属性表示:Struts框架在将     ActionForm对象(与目标Action匹配的ActionForm)传送到Action之前,会将ActionForm对象保存的位置。

如:scope=“request”配置,将指示struts调用request.setAttribute(“ActionForm名称”,ActionForm对象)方法,将ActionForm对象保存到request。

其中,ActionForm名称与struts-config.xml配置中的ActionForm名称一致。

如:<form-beanname=“uploadForm”type=“com.bbc.struts.actionform.UploadActionForm”/>,

其中uploadForm就是其名称。

二、解决问题。

假设现在要在一个页面上输入用户的信息,用户不小心输入了重复的帐号,而帐号不允许重复,这是后系统给用户有关帐号重复的信息,同时让用户重新选择一个帐号。在这种状况下我们需要返回用户录入界面,让用户修改帐号字段。Scope属性就是解决了如何在返回这个录入界面的时候将用户输入的其他信息保持住。

三、实例。

效果图


1、配置Struts环境

2、编写JSP代码

index.jsp代码

  1. <%@ page language="java" import="java.util.*" pageEncoding="GB18030"%>
  2. <%
  3. String path = request.getContextPath();
  4. String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
  5. %>
  6.  
  7. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  8. <html>
  9. <head>
  10. <base href="<%=basePath%>">
  11.  
  12. <title>My JSP 'index.jsp' starting page</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. <a href="start.do">开始</a>
  25. </body>
  26. </html>

step1.jsp代码

  1. <%@ page language="java" contentType="text/html; charset=GB18030"
  2. pageEncoding="GB18030"%>
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  4. <html>
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html; charset=GB18030">
  7. <title>Insert title here</title>
  8. </head>
  9. <body>
  10. <h1>用户信息</h1>
  11. <hr>
  12. <form action="step1.do" method="post">
  13. 姓名:<input type="text" name="name"/><br>
  14. <input type="submit" value="下一步">
  15. </form>
  16. </body>
  17. </html>

step2.jsp代码

  1. <%@ page language="java" contentType="text/html; charset=GB18030"
  2. pageEncoding="GB18030"%>
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  4. <html>
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html; charset=GB18030">
  7. <title>Insert title here</title>
  8. </head>
  9. <body>
  10. <h1>产品信息</h1>
  11. <hr>
  12. <form action="step2.do" method="post">
  13. <input type="checkbox" name="productId" value="1">产品1<br>
  14. <input type="checkbox" name="productId" value="2">产品2<br>
  15. <input type="checkbox" name="productId" value="3">产品3<br>
  16. <input type="checkbox" name="productId" value="4">产品4<br>
  17. <input type="checkbox" name="productId" value="5">产品5<br>
  18. <input type="checkbox" name="productId" value="6">产品6<br>
  19. <input type="submit" value="下一步">
  20. </form>
  21. </body>
  22. </html>

step3.jsp代码

  1. <%@ page language="java" contentType="text/html; charset=GB18030"
  2. pageEncoding="GB18030"%>
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  4. <html>
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html; charset=GB18030">
  7. <title>Insert title here</title>
  8. </head>
  9. <body>
  10. <h1>地址信息</h1>
  11. <hr>
  12. <form action="step3.do" method="post">
  13. 地址:<input type="text" name="address"><br>
  14. <input type="submit" value="下一步">
  15. </form>
  16. </body>
  17. </html>

finish.jsp代码

  1. <%@ page language="java" contentType="text/html; charset=GB18030"
  2. pageEncoding="GB18030"%>
  3. <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
  4. <%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
  5. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  6. <html>
  7. <head>
  8. <meta http-equiv="Content-Type" content="text/html; charset=GB18030">
  9. <title>Insert title here</title>
  10. </head>
  11. <body>
  12. <h1>订单信息</h1>
  13. <hr>
  14. <form action="finish.do" method="post">
  15. 姓名:${stepForm.name }<br>
  16. 产品:
  17. <c:forEach items="${stepForm.productId}" var="p" varStatus="vs">
  18. 产品${p}
  19. <c:if test="${vs.count!=fn:length(stepForm.productId)}">
  20. ,
  21. </c:if>
  22. </c:forEach>
  23. <br>
  24. 地址:${stepForm.address }<br>
  25. <input type="submit" value="确认">
  26. </form>
  27. </body>
  28. </html>

success.jsp代码

  1. <%@ page language="java" contentType="text/html; charset=GB18030"
  2. pageEncoding="GB18030"%>
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  4. <html>
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html; charset=GB18030">
  7. <title>Insert title here</title>
  8. </head>
  9. <body>
  10. 成功!!!
  11. </body>
  12. </html>

3、编写ActionForm代码

StepActionForm.java代码

  1. package com.bjpowernode.struts;
  2.  
  3. import javax.servlet.http.HttpServletRequest;
  4.  
  5. import org.apache.struts.action.ActionForm;
  6. import org.apache.struts.action.ActionMapping;
  7.  
  8. public class StepActionForm extends ActionForm {
  9.  
  10. private String name;
  11.  
  12. private int[] productId;
  13.  
  14. private String address;
  15.  
  16. public String getName() {
  17. return name;
  18. }
  19.  
  20. public void setName(String name) {
  21. this.name = name;
  22. }
  23.  
  24. public int[] getProductId() {
  25. return productId;
  26. }
  27.  
  28. public void setProductId(int[] productId) {
  29. this.productId = productId;
  30. }
  31.  
  32. public String getAddress() {
  33. return address;
  34. }
  35.  
  36. public void setAddress(String address) {
  37. this.address = address;
  38. }
  39.  
  40. // @Override
  41. // public void reset(ActionMapping mapping, HttpServletRequest request) {
  42. // this.name=null;
  43. // this.address=null;
  44. // this.productId=null;
  45. // }
  46. public void resetForm(){
  47. this.name=null;
  48. this.address=null;
  49. this.productId=null;
  50. }
  51.  
  52. }

4、编写Action代码

StartAction.java代码

  1. package com.bjpowernode.struts;
  2.  
  3. import javax.servlet.http.HttpServletRequest;
  4. import javax.servlet.http.HttpServletResponse;
  5.  
  6. import org.apache.struts.action.Action;
  7. import org.apache.struts.action.ActionForm;
  8. import org.apache.struts.action.ActionForward;
  9. import org.apache.struts.action.ActionMapping;
  10.  
  11. public class StartAction extends Action {
  12.  
  13. @Override
  14. public ActionForward execute(ActionMapping mapping, ActionForm form,
  15. HttpServletRequest request, HttpServletResponse response)
  16. throws Exception {
  17. StepActionForm saForm=(StepActionForm)form;
  18. saForm.resetForm();
  19. return mapping.findForward("success");
  20. }
  21.  
  22. }

Step1Action.java代码

  1. package com.bjpowernode.struts;
  2.  
  3. import javax.servlet.http.HttpServletRequest;
  4. import javax.servlet.http.HttpServletResponse;
  5.  
  6. import org.apache.struts.action.Action;
  7. import org.apache.struts.action.ActionForm;
  8. import org.apache.struts.action.ActionForward;
  9. import org.apache.struts.action.ActionMapping;
  10.  
  11. public class Step1Action extends Action {
  12.  
  13. @Override
  14. public ActionForward execute(ActionMapping mapping, ActionForm form,
  15. HttpServletRequest request, HttpServletResponse response)
  16. throws Exception {
  17. return mapping.findForward("success");
  18. }
  19.  
  20. }

Step2Action.java代码

  1. package com.bjpowernode.struts;
  2.  
  3. import javax.servlet.http.HttpServletRequest;
  4. import javax.servlet.http.HttpServletResponse;
  5.  
  6. import org.apache.struts.action.Action;
  7. import org.apache.struts.action.ActionForm;
  8. import org.apache.struts.action.ActionForward;
  9. import org.apache.struts.action.ActionMapping;
  10.  
  11. public class Step2Action extends Action {
  12.  
  13. @Override
  14. public ActionForward execute(ActionMapping mapping, ActionForm form,
  15. HttpServletRequest request, HttpServletResponse response)
  16. throws Exception {
  17. return mapping.findForward("success");
  18. }
  19.  
  20. }

Step3Action.java代码

  1. package com.bjpowernode.struts;
  2.  
  3. import javax.servlet.http.HttpServletRequest;
  4. import javax.servlet.http.HttpServletResponse;
  5.  
  6. import org.apache.struts.action.Action;
  7. import org.apache.struts.action.ActionForm;
  8. import org.apache.struts.action.ActionForward;
  9. import org.apache.struts.action.ActionMapping;
  10.  
  11. public class Step3Action extends Action {
  12.  
  13. @Override
  14. public ActionForward execute(ActionMapping mapping, ActionForm form,
  15. HttpServletRequest request, HttpServletResponse response)
  16. throws Exception {
  17. return mapping.findForward("success");
  18. }
  19.  
  20. }

FinishAction.java代码

  1. package com.bjpowernode.struts;
  2.  
  3. import javax.servlet.http.HttpServletRequest;
  4. import javax.servlet.http.HttpServletResponse;
  5.  
  6. import org.apache.struts.action.Action;
  7. import org.apache.struts.action.ActionForm;
  8. import org.apache.struts.action.ActionForward;
  9. import org.apache.struts.action.ActionMapping;
  10.  
  11. public class FinishAction extends Action {
  12.  
  13. @Override
  14. public ActionForward execute(ActionMapping mapping, ActionForm form,
  15. HttpServletRequest request, HttpServletResponse response)
  16. throws Exception {
  17. return mapping.findForward("success");
  18. }
  19.  
  20. }

5、配置Struts-config.xml

  1. <?xml version="1.0" encoding="ISO-8859-1" ?>
  2.  
  3. <!DOCTYPE struts-config PUBLIC
  4. "-//Apache Software Foundation//DTD Struts Configuration 1.2//EN"
  5. "http://jakarta.apache.org/struts/dtds/struts-config_1_2.dtd">
  6.  
  7. <struts-config>
  8. <form-beans>
  9. <form-bean name="stepForm" type="com.bjpowernode.struts.StepActionForm"/>
  10. </form-beans>
  11.  
  12. <action-mappings>
  13. <action path="/start"
  14. type="com.bjpowernode.struts.StartAction"
  15. name="stepForm"
  16. scope="session"
  17. >
  18. <forward name="success" path="/step1.jsp"/>
  19. </action>
  20.  
  21. <action path="/step1"
  22. type="com.bjpowernode.struts.Step1Action"
  23. name="stepForm"
  24. scope="session"
  25. >
  26. <forward name="success" path="/step2.jsp"/>
  27. </action>
  28.  
  29. <action path="/step2"
  30. type="com.bjpowernode.struts.Step2Action"
  31. name="stepForm"
  32. scope="session"
  33. >
  34. <forward name="success" path="/step3.jsp"/>
  35. </action>
  36.  
  37. <action path="/step3"
  38. type="com.bjpowernode.struts.Step3Action"
  39. name="stepForm"
  40. scope="session"
  41. >
  42. <forward name="success" path="/finish.jsp"/>
  43. </action>
  44.  
  45. <action path="/finish"
  46. type="com.bjpowernode.struts.FinishAction"
  47. name="stepForm"
  48. scope="session"
  49. >
  50. <forward name="success" path="/success.jsp"/>
  51. </action>
  52.  
  53. </action-mappings>
  54. </struts-config>

四、注意事项。

            需要引用jstl.jar和standard.jar。

菜鸟学习Struts——Scope属性的更多相关文章

  1. 菜鸟学习Struts——总结

    一.原理 客户端请求到ActionSeverlet,ActionSeverlet负责截URL进行分发分发到每一个Action上,Action负责和Model打交道然后把相关信息返回到ActionSev ...

  2. 菜鸟学习Struts——简易计算器

    这是学习Struts的一个简单的例子文件结构如下: 1.配置Struts环境 2.新建input.jsp,success.jsp,error.jsp input.jsp代码如下: <%@ pag ...

  3. 菜鸟学习Struts——配置Struts环境

    刚开始学习Struts,它通过采用JavaServlet/JSP技术,实现了基于Java EEWeb应用的MVC设计模式的应用框架,是MVC经典设计模式中的一个经典产品. 要用到Struts就要学会配 ...

  4. spring学习 十七 scope属性,单例多例

    Scope属性是<bean>中的属性,取值可以有, singleton 默认值, 单例, prototype 多例, 每次获取重新实例化, request 每次请求重新实例化, sessi ...

  5. 菜鸟学习Struts——国际化

    一.概念 国际化:界面上的语言可以根据用户所在的地区改变显示语言. 如图: 二.实例 下面就一步一步的教大家利用Struts实现国际化. 1.编写资源文件 这个资源文件就是界面上显示的字符,资源文件里 ...

  6. 菜鸟学习Struts——bean标签库

    一.Struts标签库. Struts实际上包含了4个标签库:bean,logic,html,tiles bean:用来在属性范围中定义或取得属性的,同时可以读取资源文件信息 logic:替代JSTL ...

  7. css菜鸟学习之text-align属性,行内元素,块级元素居中详解

    一.text-align属性 1.text-align用来设置元素中的的文本对齐方式,例如:如果需要设置图片的对齐方式,需要设置图片的父元素的text-align属性: 2.text-align只对文 ...

  8. 菜鸟学习SSH——目录

    菜鸟学习Struts--配置Struts环境 菜鸟学习Struts--简易计算器 菜鸟学习Struts--bean标签库 菜鸟学习Struts--Scope属性 菜鸟学习Struts--国际化 菜鸟学 ...

  9. 【菜鸟学习jquery源码】数据缓存与data()

    前言 最近比较烦,深圳的工作还没着落,论文不想弄,烦.....今天看了下jquery的数据缓存的代码,参考着Aaron的源码分析,自己有点理解了,和大家分享下.以后也打算把自己的jquery的学习心得 ...

随机推荐

  1. 从手工测试转型web自动化测试继而转型成专门做自动化测试的学习路线。

    在开始之前先自学两个工具商业web自动化测试工具请自学QTP:QTP的学习可以跳过,我是跳过了的.开源web自动化测试工具请自学Selenium:我当年是先学watir(耗时1周),再学seleniu ...

  2. Android开发-API指南-Bound 类型的服务

    Bound Services 英文原文:http://developer.android.com/guide/components/bound-services.html 采集(更新)日期:2014- ...

  3. windows bat 文件

    windows下的bat文件即批处理文件或批处理脚本,英文为BATCH,  BAT文件是无格式的文本文件. 在命令提示下键入批处理文件的名称,或者双击该批处理文件,系统就会调用Cmd.exe按照该文件 ...

  4. KMP算法模板

    不懂的话推荐看这篇博客,讲的很清楚 http://blog.csdn.net/v_july_v/article/details/7041827 #include<iostream> #in ...

  5. .net Url重写

    详细说明及下载dll源码路径: http://msdn.microsoft.com/zh-cn/library/ms972974.aspx 顺带上本人写的一个小例子:http://files.cnbl ...

  6. 用Ossim管理IT资产(视频)

    用Ossim管理IT资产 在Ossim中集成了Ocs Server,OCS用于帮助网络或系统管理员来跟踪网络中计算机配置与软件安装情况的应用程序.收集到硬件和系统信息,OCS Inventory 也可 ...

  7. 多行文字垂直居中(完美兼容chrome firefox IE6 7 8 9)

    在说到这个问题的时候,也许有人会问CSS中不是有vertical-align属性来设置垂直居中的吗?即使是某些浏览器不支持我只需做少许的CSS Hack技术就可以啊!所以在这里我还要啰嗦两句,CSS中 ...

  8. SQLserver2008使用表达式递归查询(由父往子,由子往父)

    SQLserver2008使用表达式递归查询语句 --由父项递归下级 with cte(id,parentid,text) as (--父项 select id,parentid,text from ...

  9. Oracle笔记 十、PL/SQL存储过程

    --create or replace 创建或替换,如果存在就替换,不存在就创建 create or replace procedure p is cursor c is select * from ...

  10. java 设计模式-代理

    代理模式对其他对象提供一种代理以控制对这个对象的访问.      在某些情况下,一个对象不想或者不能直接引用另一个对象,而代理对象可以在客户端和目标对象之间起到中介的作用.       代理模式的思想 ...