一 scope说明
指定ActionForm Bean的存在范围,可选取request和session,默认是session。
二 通过request取数据
1 LoginAction
package com.cakin.actions;
//这是一个action(表示小队长,需要继承Action)
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;
import com.cakin.forms.UserForm;
public class LoginAction extends Action {
//我们需要重新编写一个方法:execute会被自动调用,有点类似servlet的service方法。
@Override
public ActionForward execute(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response)
throws Exception {
//把form转成对应的UserForm对象
UserForm userForm=(UserForm)form;
//简单验证
if("123".equals(userForm.getPassword())){
//把名字存放到request对象域
//request.setAttribute("username", userForm.getUsername());
return mapping.findForward("ok");
}
else{
return mapping.findForward("err");
}
}
}
2 wel.jsp
<%@ page language="java" import="java.util.*" import="com.cakin.forms.*" pageEncoding="utf-8"%>
<%
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 'wel.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>
welcome <%=((UserForm)request.getAttribute("userForm")).getUsername() %> <br>
<a href="/strutslogin/">返回重新登录</a>
</body>
</html>
3 struts-config.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.3//EN" "http://struts.apache.org/dtds/struts-config_1_3.dtd";>
<struts-config>
<!-- 配置表单 -->
<form-beans>
<!-- name是表单名字,可以随意写,但我们建议取名规范,表单为类名小写 -->
<!-- type用于指定表单类全路径 -->
<form-bean name="userForm" type="com.cakin.forms.UserForm"></form-bean>
</form-beans>
<action-mappings>
<!-- name用于关联某个表单-->
<!-- type用于指定该action类全路径-->
<!-- request表示该action对应的表单对象的生命周期request=request.setAttribute("userForm",userForm)-->
<!-- session表示该action对应的表单对象的生命周期session=request.getSession.setAttribute("userForm",userForm)-->
<action path="/login" name="userForm" scope="request" type="com.cakin.actions.LoginAction">
<!-- 这里配置跳转关系-->
<!--name表示结果名称 path:转发到哪个页面 -->
<forward name="ok" path="/WEB-INF/wel.jsp"></forward>
<forward name="err" path="/WEB-INF/err.jsp"></forward>
</action>
</action-mappings>
</struts-config>
三 测试结果
四 通过session取数据
1 struts-config.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.3//EN" "http://struts.apache.org/dtds/struts-config_1_3.dtd";>
<struts-config>
<!-- 配置表单 -->
<form-beans>
<!-- name是表单名字,可以随意写,但我们建议取名规范,表单为类名小写 -->
<!-- type用于指定表单类全路径 -->
<form-bean name="userForm" type="com.cakin.forms.UserForm"></form-bean>
</form-beans>
<action-mappings>
<!-- name用于关联某个表单-->
<!-- type用于指定该action类全路径-->
<!-- request表示该action对应的表单对象的生命周期request=request.setAttribute("userForm",userForm)-->
<!-- session表示该action对应的表单对象的生命周期session=request.getSession.setAttribute("userForm",userForm)-->
<action path="/login" name="userForm" type="com.cakin.actions.LoginAction">
<!-- 这里配置跳转关系-->
<!--name表示结果名称 path:转发到哪个页面 -->
<forward name="ok" path="/WEB-INF/wel.jsp"></forward>
<forward name="err" path="/WEB-INF/err.jsp"></forward>
</action>
</action-mappings>
</struts-config>
2 wel.jsp
<%@ page language="java" import="java.util.*" import="com.cakin.forms.*" pageEncoding="utf-8"%>
<%
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 'wel.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>
welcome <%=((UserForm)session.getAttribute("userForm")).getUsername() %> <br>
<a href="/strutslogin/">返回重新登录</a>
</body>
</html>
五 测试结果
相关推荐
在 Struts 应用程序中,`struts-config.xml` 文件是核心配置文件,它定义了应用的行为、控制器(Actions)、数据源(Form Beans)以及视图(JSP 页面)之间的关系。本文将深入探讨 `struts-config.xml` 的主要元素和...
Struts框架的核心配置文件`struts-config.xml`是整个应用的关键组成部分之一,它定义了应用程序中各个组件(如Action、FormBean等)的行为与交互方式。本文将详细介绍`struits-config.xml`中的关键配置项,并解释其...
通过在配置文件(struts-config.xml)中声明和组合拦截器,我们可以灵活地控制请求的流程。 在saif-0.1.jar这个库中,可能包含了自定义的拦截器实现。这些拦截器可能为Struts1框架提供了特定的功能增强,例如优化...
`struts-config.xml`是Struts框架的核心配置文件,它定义了应用程序的行为、数据源、表单以及异常处理策略。以下是针对该文件中提到的几个关键配置元素的详细解释: 1. ****: 数据源配置是连接到数据库的关键部分...
Struts-config.xml 文件是 Struts 框架的核心配置文件,它定义了应用程序的行为和组件间的交互方式。以下是关于 `struts-config.xml` 配置实例的详细说明: 1. **数据源配置 (data-sources)** 数据源是连接数据库...
在使用 Struts 1.2 时,配置文件是核心部分,主要包括两个关键文件:`web.xml` 和 `struts-config.xml`。 **一、web.xml 配置** `web.xml` 是 Web 应用的部署描述符,用于配置应用的基本行为和设置。在 Struts 1.2...
这通常是由于 `validation.xml` 文件配置不正确或未正确引用。 **解决方案:** 1. **检查 validation.xml 文件**:确保文件中定义了所有需要验证的规则,并且每个规则都有正确的资源引用。 2. **检查 struts-config...
`struts-config.xml` 是Struts1.2的核心配置文件,它定义了应用程序的行为,包括Action类、表单 Beans、数据源、国际化资源等。以下是一些关键配置元素: - ****: 定义Struts控制器,通常不需要直接配置。 - **...
- **配置文件(struts-config.xml)**:这是Struts框架的核心配置文件,其中包含了数据源、表单Bean、全局异常处理、全局转发以及Action映射等关键配置信息。 #### 配置文件示例(struts-config.xml) ```xml <?xml ...
解决方法是仔细检查 struts-config.xml 文件,确保它是良构的 XML 文件。 11. “Servlet.init() for servlet action threw exception” 这个错误通常发生在后面会显示一个关于 ActionServlet 的异常堆栈信息,其中...
精通Struts需要掌握如何配置Web应用的`web.xml`和Struts的`struts-config.xml`文件,理解ActionServlet的作用,以及ActionForm和Action的配置方式。同时,了解`org.apache.struts.config`包中的配置类对于深入理解...
在使用 Struts 框架时,如果遇到 `No bean found under attribute key XXX` 这类错误,通常意味着在 Struts 的配置文件 `struts-config.xml` 或者 `ApplicationResources.properties` 文件中存在缺失或者错误的配置...
在实际使用过程中,开发者可能会遇到各种错误,这些错误通常与配置文件(struts-config.xml)、Action类、FormBean以及JSP页面的编写有关。以下是对几个常见错误及其原因的详细分析: 1. 异常 javax.servlet.jsp....
除了在`web.xml`文件中进行基本的Spring配置外,还可以进一步在Struts的配置文件`struts-config.xml`中利用Spring的功能。这样做的好处是可以更加灵活地管理和配置Struts中的各种组件。 1. **定义Action类**:在...
- **struts-config.xml**:这是Struts1的核心配置文件,包含了所有Action、Form Bean、Forward、Plug-in等配置信息。例如: ```xml <struts-config> <form-beans> <!-- Form Bean配置 --> </form-beans> ...
在 Struts 框架中,`config` 文件通常指的是 `struts-config.xml`,它是 Struts 应用的核心配置文件。这个文件定义了应用程序的控制器行为,包括动作映射、数据源、拦截器等关键组件。以下是关于 `struts-config.xml...
在这个结构中,我们可以看到 Struts 配置文件 "struts-config.xml" 和 Web 应用程序的配置文件 "web.xml"。 在开始我们的例子之前,我们需要修改 "web.xml" 文件,添加标签库。我们将下面代码添加到 "</webapp>" ...
- 如果 `name` 属性值对应的是 Struts 配置文件 `struts-config.xml` 中定义的 Action 的 `name` 值,确保该 Action 的配置正确无误。 - 若不需要 `name` 属性,可以直接删除之。 #### 2. “No bean found under ...