、在一般情况下,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的源代码:
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);
} else {
session = request.getSession();
instance = (Actionform) session.getAttribute(attribute);
}
。。。
。。。
}
下面又有一个问题浮出水面:如果我没有在action mapping中指定attribute呢,那struts 是如何解决的?
答案很简单,如果单从结果上看,此时struts使用的name的值,为什么呢,看struts源代码:
protected String attribute = null;
public String getAttribute() {
//yes!!!!就在这里,看到了吧,如果你没有设定attribute,那么struts 会把name的值拿过来用。呵呵。。。
if (this.attribute == null) {
return (this.name);
} else {
return (this.attribute);
}
}
public void setAttribute(String attribute) {
if (configured) {
throw new IllegalStateException("Configuration is frozen");
}
this.attribute = attribute;
分享到:
相关推荐
如果没有设置`attribute`,系统会默认使用`name`属性的值。例如,`attribute="userForm"`表示`ActionForm`实例在请求或会话中以`userForm`为键存储。 2. **name**: `name`属性是`ActionForm`类的名称,它对应于配置...
综上所述,Struts2框架提供了多种方式来让Action类获取不同范围的属性,包括非IoC和IoC方式,以及是否依赖于Servlet容器。此外,Struts2还支持通配符匹配和国际化等高级功能,为开发者提供了丰富的工具集,使得开发...
JSP标签可以分为三种类型:动作标签(<jsp:action>)、简单标签()和自定义标签()。自定义标签是开发者根据需求创建的,可以封装复杂的业务逻辑或页面结构。 动态属性自定义标签是指在自定义标签中可以接受动态...
或者是在 Action 的定义中,name 或 attribute 属性指定的 ActionForm 不存在。 3. “Cannot find bean XXX in any scope” 这个错误通常发生在 Action 里一般会 request.setAttribute() 一些对象,然后在转向的 ...
var attrValue = $(this).attr('attributeName'); // 处理每个元素的属性值 }); } ``` 这里的`$(xml)`将XML对象转换为一个jQuery对象,方便使用jQuery的方法进行操作。 **Struts2 Action配置:** 在Struts2框架...
<forward name="test1" path="/test1.jsp" /> <forward name="test2" path="/test2.jsp" /> <forward name="test3" path="/test3.jsp" /> <forward name="scope" path="/sure.jsp" /> <action-mappings > ...
这个组件通常涉及到用户在将商品添加到购物车之前,需要先选择商品的各种规格和属性,如颜色、尺寸、包装等。下面将详细探讨Swift中实现这一功能所需的关键知识点。 首先,我们需要了解`UI相关控件`。在iOS应用中,...
Timeout、Idle-Timeout、Termination-Action、Called-Station-ID、Calling-Station-ID、NAS-Identifier、Login-LAT-Service、Login-LAT-Node、Login-LAT-Group 等,每个属性都有其特定的功能和用途。 Radius 属性是...
- 检查 Action 的 `name` 和 `attribute` 属性是否与实际定义的 ActionForm 匹配。 #### 3. “Cannot find bean XXX in any scope” - **异常描述**:JSP 文件试图访问通过 `request.setAttribute()` 方法存储的...
可以在Action中设置属性,然后在JSP中使用`<s:useAction>`标签或`tiles:insertAttribute`标签插入这些属性,实现动态内容的插入。 7. ** TilesTest 示例** 压缩包中的TilesTest可能是用于演示或测试Tiles功能的...
这段配置表示,当用户请求以"/userAtion"开头的URL时,Struts会使用`UserAction`类处理该请求,`name`属性与之前定义的`<form-bean>`中的`name`属性匹配,确保Action使用正确的ActionForm来处理请求数据。...
- Attribute 是用来在请求之间传递数据的关键字,其默认值与Form的name属性相同。通过它可以在Action和视图之间存取数据。 6. **validate 和 input 属性**: - `validate` 属性控制是否进行表单验证,默认值为 `...
Struts2是一个强大的Java EE应用程序框架,用于构建可...通过定义、组件、容器和属性的概念,我们可以创建灵活、模块化的Web应用。理解并熟练掌握Tiles配置,能极大提升开发效率,同时让应用的界面更加整洁和易于维护。
在Struts2框架中,实现弹出Action返回的错误信息是一项常见的需求,特别是在表单验证、数据处理或业务逻辑执行失败时,向用户反馈错误信息至关重要。本文将深入探讨三种在Struts2中实现这一功能的方法,并对每种方法...
<action attribute="loginForm" input="/login.jsp" name="loginForm" path="/login" scope="request" type="test.action.LoginAction"> <forward name="success" path="/loginSuccess.jsp"/> <forward name=...
在`struts-config.xml`中,`<action>`标签是用来配置Action的核心元素,其主要属性包括: 1. `path`: 这个属性定义了Action的URL路径,不包含文件扩展名`.do`。例如,`/Register`。Struts1会自动处理`.do`扩展名的...
<action attribute="mldnForm" input="/form/demo.jsp" name="mldnForm" path="/demo" scope="request" type="org.lxh.struts.action.DemoAction" parameter="status" validate="true" /> ``` 同时,还需要在...
这通常在`struts.xml`文件中完成,使用`<package>`标签的`namespace`和`name`属性指定标签库的命名空间和ID,然后使用`<result>`标签的`type`属性指定标签库的位置。 5. **使用标签**:在JSP页面中,我们可以通过`...
### Struts2自定义标签详解 #### 一、引言 在Java Web开发中,Struts2框架因其灵活的架构和强大的功能而受到广大开发者们的青睐...开发者可以根据项目需求,灵活地定义和使用自定义标签,以提升开发效率和代码质量。
<put-attribute name="header" value="/jsp/include/header.jsp" /> <put-attribute name="menu" value="/jsp/include/menu.jsp" /> <put-attribute name="body" value="" /> <put-attribute name="footer" ...