菜鸟学习Struts——Scope属性
一、概念。
在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代码
- <%@ page language="java" import="java.util.*" pageEncoding="GB18030"%>
- <%
- String path = request.getContextPath();
- String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
- %>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <html>
- <head>
- <base href="<%=basePath%>">
- <title>My JSP 'index.jsp' starting page</title>
- <meta http-equiv="pragma" content="no-cache">
- <meta http-equiv="cache-control" content="no-cache">
- <meta http-equiv="expires" content="0">
- <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
- <meta http-equiv="description" content="This is my page">
- <!--
- <link rel="stylesheet" type="text/css" href="styles.css">
- -->
- </head>
- <body>
- <a href="start.do">开始</a>
- </body>
- </html>
step1.jsp代码
- <%@ page language="java" contentType="text/html; charset=GB18030"
- pageEncoding="GB18030"%>
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=GB18030">
- <title>Insert title here</title>
- </head>
- <body>
- <h1>用户信息</h1>
- <hr>
- <form action="step1.do" method="post">
- 姓名:<input type="text" name="name"/><br>
- <input type="submit" value="下一步">
- </form>
- </body>
- </html>
step2.jsp代码
- <%@ page language="java" contentType="text/html; charset=GB18030"
- pageEncoding="GB18030"%>
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=GB18030">
- <title>Insert title here</title>
- </head>
- <body>
- <h1>产品信息</h1>
- <hr>
- <form action="step2.do" method="post">
- <input type="checkbox" name="productId" value="1">产品1<br>
- <input type="checkbox" name="productId" value="2">产品2<br>
- <input type="checkbox" name="productId" value="3">产品3<br>
- <input type="checkbox" name="productId" value="4">产品4<br>
- <input type="checkbox" name="productId" value="5">产品5<br>
- <input type="checkbox" name="productId" value="6">产品6<br>
- <input type="submit" value="下一步">
- </form>
- </body>
- </html>
step3.jsp代码
- <%@ page language="java" contentType="text/html; charset=GB18030"
- pageEncoding="GB18030"%>
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=GB18030">
- <title>Insert title here</title>
- </head>
- <body>
- <h1>地址信息</h1>
- <hr>
- <form action="step3.do" method="post">
- 地址:<input type="text" name="address"><br>
- <input type="submit" value="下一步">
- </form>
- </body>
- </html>
finish.jsp代码
- <%@ page language="java" contentType="text/html; charset=GB18030"
- pageEncoding="GB18030"%>
- <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
- <%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=GB18030">
- <title>Insert title here</title>
- </head>
- <body>
- <h1>订单信息</h1>
- <hr>
- <form action="finish.do" method="post">
- 姓名:${stepForm.name }<br>
- 产品:
- <c:forEach items="${stepForm.productId}" var="p" varStatus="vs">
- 产品${p}
- <c:if test="${vs.count!=fn:length(stepForm.productId)}">
- ,
- </c:if>
- </c:forEach>
- <br>
- 地址:${stepForm.address }<br>
- <input type="submit" value="确认">
- </form>
- </body>
- </html>
success.jsp代码
- <%@ page language="java" contentType="text/html; charset=GB18030"
- pageEncoding="GB18030"%>
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=GB18030">
- <title>Insert title here</title>
- </head>
- <body>
- 成功!!!
- </body>
- </html>
3、编写ActionForm代码
StepActionForm.java代码
- package com.bjpowernode.struts;
- import javax.servlet.http.HttpServletRequest;
- import org.apache.struts.action.ActionForm;
- import org.apache.struts.action.ActionMapping;
- public class StepActionForm extends ActionForm {
- private String name;
- private int[] productId;
- private String address;
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public int[] getProductId() {
- return productId;
- }
- public void setProductId(int[] productId) {
- this.productId = productId;
- }
- public String getAddress() {
- return address;
- }
- public void setAddress(String address) {
- this.address = address;
- }
- // @Override
- // public void reset(ActionMapping mapping, HttpServletRequest request) {
- // this.name=null;
- // this.address=null;
- // this.productId=null;
- // }
- public void resetForm(){
- this.name=null;
- this.address=null;
- this.productId=null;
- }
- }
4、编写Action代码
StartAction.java代码
- package com.bjpowernode.struts;
- import javax.servlet.http.HttpServletRequest;
- import javax.servlet.http.HttpServletResponse;
- import org.apache.struts.action.Action;
- import org.apache.struts.action.ActionForm;
- import org.apache.struts.action.ActionForward;
- import org.apache.struts.action.ActionMapping;
- public class StartAction extends Action {
- @Override
- public ActionForward execute(ActionMapping mapping, ActionForm form,
- HttpServletRequest request, HttpServletResponse response)
- throws Exception {
- StepActionForm saForm=(StepActionForm)form;
- saForm.resetForm();
- return mapping.findForward("success");
- }
- }
Step1Action.java代码
- package com.bjpowernode.struts;
- import javax.servlet.http.HttpServletRequest;
- import javax.servlet.http.HttpServletResponse;
- import org.apache.struts.action.Action;
- import org.apache.struts.action.ActionForm;
- import org.apache.struts.action.ActionForward;
- import org.apache.struts.action.ActionMapping;
- public class Step1Action extends Action {
- @Override
- public ActionForward execute(ActionMapping mapping, ActionForm form,
- HttpServletRequest request, HttpServletResponse response)
- throws Exception {
- return mapping.findForward("success");
- }
- }
Step2Action.java代码
- package com.bjpowernode.struts;
- import javax.servlet.http.HttpServletRequest;
- import javax.servlet.http.HttpServletResponse;
- import org.apache.struts.action.Action;
- import org.apache.struts.action.ActionForm;
- import org.apache.struts.action.ActionForward;
- import org.apache.struts.action.ActionMapping;
- public class Step2Action extends Action {
- @Override
- public ActionForward execute(ActionMapping mapping, ActionForm form,
- HttpServletRequest request, HttpServletResponse response)
- throws Exception {
- return mapping.findForward("success");
- }
- }
Step3Action.java代码
- package com.bjpowernode.struts;
- import javax.servlet.http.HttpServletRequest;
- import javax.servlet.http.HttpServletResponse;
- import org.apache.struts.action.Action;
- import org.apache.struts.action.ActionForm;
- import org.apache.struts.action.ActionForward;
- import org.apache.struts.action.ActionMapping;
- public class Step3Action extends Action {
- @Override
- public ActionForward execute(ActionMapping mapping, ActionForm form,
- HttpServletRequest request, HttpServletResponse response)
- throws Exception {
- return mapping.findForward("success");
- }
- }
FinishAction.java代码
- package com.bjpowernode.struts;
- import javax.servlet.http.HttpServletRequest;
- import javax.servlet.http.HttpServletResponse;
- import org.apache.struts.action.Action;
- import org.apache.struts.action.ActionForm;
- import org.apache.struts.action.ActionForward;
- import org.apache.struts.action.ActionMapping;
- public class FinishAction extends Action {
- @Override
- public ActionForward execute(ActionMapping mapping, ActionForm form,
- HttpServletRequest request, HttpServletResponse response)
- throws Exception {
- return mapping.findForward("success");
- }
- }
5、配置Struts-config.xml
- <?xml version="1.0" encoding="ISO-8859-1" ?>
- <!DOCTYPE struts-config PUBLIC
- "-//Apache Software Foundation//DTD Struts Configuration 1.2//EN"
- "http://jakarta.apache.org/struts/dtds/struts-config_1_2.dtd">
- <struts-config>
- <form-beans>
- <form-bean name="stepForm" type="com.bjpowernode.struts.StepActionForm"/>
- </form-beans>
- <action-mappings>
- <action path="/start"
- type="com.bjpowernode.struts.StartAction"
- name="stepForm"
- scope="session"
- >
- <forward name="success" path="/step1.jsp"/>
- </action>
- <action path="/step1"
- type="com.bjpowernode.struts.Step1Action"
- name="stepForm"
- scope="session"
- >
- <forward name="success" path="/step2.jsp"/>
- </action>
- <action path="/step2"
- type="com.bjpowernode.struts.Step2Action"
- name="stepForm"
- scope="session"
- >
- <forward name="success" path="/step3.jsp"/>
- </action>
- <action path="/step3"
- type="com.bjpowernode.struts.Step3Action"
- name="stepForm"
- scope="session"
- >
- <forward name="success" path="/finish.jsp"/>
- </action>
- <action path="/finish"
- type="com.bjpowernode.struts.FinishAction"
- name="stepForm"
- scope="session"
- >
- <forward name="success" path="/success.jsp"/>
- </action>
- </action-mappings>
- </struts-config>
四、注意事项。
需要引用jstl.jar和standard.jar。
菜鸟学习Struts——Scope属性的更多相关文章
- 菜鸟学习Struts——总结
一.原理 客户端请求到ActionSeverlet,ActionSeverlet负责截URL进行分发分发到每一个Action上,Action负责和Model打交道然后把相关信息返回到ActionSev ...
- 菜鸟学习Struts——简易计算器
这是学习Struts的一个简单的例子文件结构如下: 1.配置Struts环境 2.新建input.jsp,success.jsp,error.jsp input.jsp代码如下: <%@ pag ...
- 菜鸟学习Struts——配置Struts环境
刚开始学习Struts,它通过采用JavaServlet/JSP技术,实现了基于Java EEWeb应用的MVC设计模式的应用框架,是MVC经典设计模式中的一个经典产品. 要用到Struts就要学会配 ...
- spring学习 十七 scope属性,单例多例
Scope属性是<bean>中的属性,取值可以有, singleton 默认值, 单例, prototype 多例, 每次获取重新实例化, request 每次请求重新实例化, sessi ...
- 菜鸟学习Struts——国际化
一.概念 国际化:界面上的语言可以根据用户所在的地区改变显示语言. 如图: 二.实例 下面就一步一步的教大家利用Struts实现国际化. 1.编写资源文件 这个资源文件就是界面上显示的字符,资源文件里 ...
- 菜鸟学习Struts——bean标签库
一.Struts标签库. Struts实际上包含了4个标签库:bean,logic,html,tiles bean:用来在属性范围中定义或取得属性的,同时可以读取资源文件信息 logic:替代JSTL ...
- css菜鸟学习之text-align属性,行内元素,块级元素居中详解
一.text-align属性 1.text-align用来设置元素中的的文本对齐方式,例如:如果需要设置图片的对齐方式,需要设置图片的父元素的text-align属性: 2.text-align只对文 ...
- 菜鸟学习SSH——目录
菜鸟学习Struts--配置Struts环境 菜鸟学习Struts--简易计算器 菜鸟学习Struts--bean标签库 菜鸟学习Struts--Scope属性 菜鸟学习Struts--国际化 菜鸟学 ...
- 【菜鸟学习jquery源码】数据缓存与data()
前言 最近比较烦,深圳的工作还没着落,论文不想弄,烦.....今天看了下jquery的数据缓存的代码,参考着Aaron的源码分析,自己有点理解了,和大家分享下.以后也打算把自己的jquery的学习心得 ...
随机推荐
- 从手工测试转型web自动化测试继而转型成专门做自动化测试的学习路线。
在开始之前先自学两个工具商业web自动化测试工具请自学QTP:QTP的学习可以跳过,我是跳过了的.开源web自动化测试工具请自学Selenium:我当年是先学watir(耗时1周),再学seleniu ...
- Android开发-API指南-Bound 类型的服务
Bound Services 英文原文:http://developer.android.com/guide/components/bound-services.html 采集(更新)日期:2014- ...
- windows bat 文件
windows下的bat文件即批处理文件或批处理脚本,英文为BATCH, BAT文件是无格式的文本文件. 在命令提示下键入批处理文件的名称,或者双击该批处理文件,系统就会调用Cmd.exe按照该文件 ...
- KMP算法模板
不懂的话推荐看这篇博客,讲的很清楚 http://blog.csdn.net/v_july_v/article/details/7041827 #include<iostream> #in ...
- .net Url重写
详细说明及下载dll源码路径: http://msdn.microsoft.com/zh-cn/library/ms972974.aspx 顺带上本人写的一个小例子:http://files.cnbl ...
- 用Ossim管理IT资产(视频)
用Ossim管理IT资产 在Ossim中集成了Ocs Server,OCS用于帮助网络或系统管理员来跟踪网络中计算机配置与软件安装情况的应用程序.收集到硬件和系统信息,OCS Inventory 也可 ...
- 多行文字垂直居中(完美兼容chrome firefox IE6 7 8 9)
在说到这个问题的时候,也许有人会问CSS中不是有vertical-align属性来设置垂直居中的吗?即使是某些浏览器不支持我只需做少许的CSS Hack技术就可以啊!所以在这里我还要啰嗦两句,CSS中 ...
- SQLserver2008使用表达式递归查询(由父往子,由子往父)
SQLserver2008使用表达式递归查询语句 --由父项递归下级 with cte(id,parentid,text) as (--父项 select id,parentid,text from ...
- Oracle笔记 十、PL/SQL存储过程
--create or replace 创建或替换,如果存在就替换,不存在就创建 create or replace procedure p is cursor c is select * from ...
- java 设计模式-代理
代理模式对其他对象提供一种代理以控制对这个对象的访问. 在某些情况下,一个对象不想或者不能直接引用另一个对象,而代理对象可以在客户端和目标对象之间起到中介的作用. 代理模式的思想 ...