1、在一般情况下,actionForm是被存储在一定的scope中(request或session,通过action的scope属性来配置),当我们在配置时,指定
name而不指定attribute,那么指定的
name值就作为actionForm存储在scope中的key值,我们可以在action中通过httpServletRequest.getAttribute("指定的
name属性值")来获得这个actionForm; 当我们既配置了
name又配置了attribute,那么actionForm存储在scope中的key值就采用attribute属性指定的值了,这时要通过httpServletRequest.getAttribute("指定的attribute属性值")来获得actionForm,此时通过httpServletRequest.getAttribute("指定的
name属性值")是不能获得actionForm的。
所以,是否配置attribute属性就决定了actionForm存储在scope中的key值是采用
name,还是采用attribute
2、 在《Programming Jakarta Struts》这本书中的第四章“Configuring the Struts Application”中这样一段说明来分别阐述这两
个属性:(102页)
++++++++
atribute:
++++++++
The name of the request or session scope attribute under which the form bean for this action can be accessed.
A value is only allowed here if there is a form bean specified in the name attribute. This attribute is
optional and has no default value.
++++++++
name:
++++++++
The name of the form bean, if any, that is associated with this action. This value must be the name attribute
from one of the form-bean elements defined earlier. This attribute is optional and has no default value.
最初看这些真的还是不好区分这两者。不过在仔细看过struts的源代码以后,豁然开朗。。。
下面主要对attribute进行解释,应为没有人会对name属性不了解的(呵呵。。。)
解释:在struts实例化actionform的时候,有两种情况:如果已经存在,那么从内存中取回;如果第一次实例化,那么创建,并放入内存。
这样就有一个问题了,struts是根据什么来取回并创建actionform的呢,答案就是attribute的值。让我们进入struts的源代码:
/**
*创建或者取回formbean方法
*该方法在:org.apache.struts.util.RequestUtils中
*/
public static Actionform createActionform(
HttpServletRequest request,
ActionMapping mapping,
ModuleConfig moduleConfig,
ActionServlet servlet) {
。。。。
。。。
// Is there a form bean associated with this mapping?
//得到action mapping中attribute的值
String attribute = mapping.getAttribute();
。。。。
。。。。
Actionform instance = null;
HttpSession session = null;
//yes!!就在这里了,把创建以后的actionform放在request或者session里,看到放入的名字了么,就是mapping.getAttribute();
if ("request".equals(mapping.getScope())) {
instance = (Actionform) request.getAttribute(attribute);
}
分享到:
相关推荐
<struts-config> <data-sources /> <form-beans > <form-bean name="addForm" type="com.lmf118.struts.form.AddForm" /> </form-beans> <global-exceptions /> <global-forwards /> <action-mappings > ...
- **异常描述**:在 Struts 配置文件 `struts-config.xml` 中定义了一个 ActionForm,但 `type` 属性指定的类不存在或者在 Action 的定义中,`name` 或 `attribute` 属性指定的 ActionForm 不存在。 - **解决方案**...
<struts-config> <data-sources /> <form-beans > <form-bean name="testForm" type="com.yourcompany.struts.form.TestForm" /> <form-bean name="test1Form" type="com.yourcompany.struts.form.Test1Form" />...
一般删除 name 属性值就可以了,这个值就是 struts-config.xml 中定义的 action 的 name 的值。 2. “No bean found under attribute key XXX” 这个错误通常发生在 Struts-config.xml 里定义了一个 ActionForm,...
<action attribute="loginForm" input="/login.jsp" name="loginForm" path="/login" scope="request" type="test.action.LoginAction"> <forward name="success" path="/loginSuccess.jsp"/> <forward name=...
1. **检查配置文件**:确保 `struts-config.xml` 文件中的 ActionForm 类型指定正确,即 `<action-mappings>` 中的 `type` 属性应指向正确的 ActionForm 类。 2. **确认对象存储**:确保在 Action 中通过 `request....
这段配置表示,当用户请求以"/userAtion"开头的URL时,Struts会使用`UserAction`类处理该请求,`name`属性与之前定义的`<form-bean>`中的`name`属性匹配,确保Action使用正确的ActionForm来处理请求数据。...
本文将深入解析Struts配置文件`struts-config.xml`中的各个核心元素及其用法。 首先,`struts-config.xml`是Struts框架的核心配置文件,它定义了应用的各个组件和它们之间的交互方式。其根元素是`<struts-config>`...
`struts-config.xml` 是Struts框架的核心配置文件,用于配置Action、Form Beans等。下面是一个简单的配置示例: ```xml <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE struts-config PUBLIC "-//Apache ...
Tiles 支持继承的概念,这意味着一个 Tiles 定义可以从另一个定义中继承属性和布局。这为复用代码提供了更大的灵活性,并且可以使页面结构更加清晰。 **示例** ```xml <definition name="baseLayout" template="/...
这通常是因为在 `struts-config.xml` 文件中配置的 `<action>` 元素中的 `type` 属性值不正确,或者该 ActionForm 在实际执行过程中并未被放入请求作用域中。 **解决方案:** 1. **检查配置文件**:确保 `struts-...
- `ActionServlet`根据`Struts-config.xml`文件中配置的`<action>`元素来找到合适的自定义`Action`(扩展自`Action`类的类)进行处理。例如,`/login`节点匹配`LoginAction`,并将表单数据封装到`LoginForm`对象中...
在`struts-config.xml`中,`<action>`标签是用来配置Action的核心元素,其主要属性包括: 1. `path`: 这个属性定义了Action的URL路径,不包含文件扩展名`.do`。例如,`/Register`。Struts1会自动处理`.do`扩展名的...
在Struts 1中,`Action`元素是`struts-config.xml`配置文件的核心部分,它定义了控制器的行为。以下是对`struts1.x_action`属性的详细解释: 1. **attribute**: `attribute`属性用于指定`ActionForm`对象在请求或...
在本示例中,我们将深入探讨如何在一个简单的应用中整合Struts与Tiles。 Struts是一个开源的MVC框架,它提供了一种规范化的处理HTTP请求、控制业务逻辑以及呈现视图的方式。而Tiles是Struts的一个扩展,主要负责...
<action attribute="loginForm" input="/login.jsp" name="loginForm" path="/login" scope="request" type="org.springframework.web.struts.DelegatingActionProxy" /> ``` 这意味着当Struts接收到`/login`路径...
4. **使用Tiles定向**:在Action类中,或者在Struts的ActionForward中指定Tiles定义来决定哪个Tile应该被显示。例如: ```java return mapping.findForward("baseLayout"); ``` 或者在`struts-config.xml`中: ...