以下几点是网上的一些关于attribute的解释:
1)应用前提,attribute只有在设置了name后才有意义。
2)attribute可以实现对象的重用,即如果设置了attribute属性,在创建actionform是,会先去查找相应的scope中是否有此对象,如果有,则重用,否则创建新的对象。
3)当你将创建的acitonForm保存到相应的scope(默认是保存在session中)中时,你想用一个更有意义的名字来访问它时,它就有意义了。
例如:
<action
attribute="newUserLoginForm"
name="userLoginForm"
type="userLoginAction"
scope="request"
path="/login">
在struts实例化actionform的时候,struts是根据attribute的值来查找并创建actionform,有两种情况:如果已经存在,那么从内存中取回;如果第一次实例化,那么创建,并放入内存。
看一下org.apache.struts.util.RequestUtils中的源代码
public static Actionform createActionform(HttpServletRequest request,
ActionMapping mapping, ModuleConfig moduleConfig,
ActionServlet servlet) {
/*
* 此处省略一些源代码
*/
String attribute = mapping.getAttribute();
/*
* 此处省略一些源代码
*/
Actionform instance = null;
HttpSession session = null;
if ("request".equals(mapping.getScope())) {
instance = (Actionform) request.getAttribute(attribute);
} else {
session = request.getSession();
instance = (Actionform) session.getAttribute(attribute);
}
/*
* 此处省略一些源代码
*/
}
如果没有配置attribute属性的话, struts才会从name属性里读出要创建的formbean 的名字,并创建一下实例,看下边的源代码就知道了
org.apache.struts.config.ActionConfig
protected String attribute = null;
public String getAttribute() {
// 注意这个地方
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;
}
分享到:
相关推荐
<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-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" />...
本文将深入解析Struts配置文件`struts-config.xml`中的各个核心元素及其用法。 首先,`struts-config.xml`是Struts框架的核心配置文件,它定义了应用的各个组件和它们之间的交互方式。其根元素是`<struts-config>`...
<action attribute="loginForm" input="/login.jsp" name="loginForm" path="/login" scope="request" type="test.action.LoginAction"> </action> </action-mappings> <message-resources parameter="test....
1. **检查配置文件**:确保 `struts-config.xml` 文件中的 ActionForm 类型指定正确,即 `<action-mappings>` 中的 `type` 属性应指向正确的 ActionForm 类。 2. **确认对象存储**:确保在 Action 中通过 `request....
`struts-config.xml` 是Struts框架的核心配置文件,用于配置Action、Form Beans等。下面是一个简单的配置示例: ```xml <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE struts-config PUBLIC "-//Apache ...
这通常是因为在 `struts-config.xml` 文件中配置的 `<action>` 元素中的 `type` 属性值不正确,或者该 ActionForm 在实际执行过程中并未被放入请求作用域中。 **解决方案:** 1. **检查配置文件**:确保 `struts-...
`<action-mappings>`元素则用于配置Action的映射。Action是处理用户请求的核心,它实现了业务逻辑。如: ```xml <action path="/userAtion" name="userForm" input="/userAtion.jsp" attribute="user" validate=...
- 检查`struts-config.xml`文件中是否存在`<action-mappings>`和`<form-beans>`元素。 - 确保所有Action和ActionForm都已在配置文件中正确定义。 ##### 6. Cannot retrieve mapping for action XXX.jsp **错误描述...
其中 `<form-bean>` 用于指定表单 bean 的类型,而 `<action-mappings>` 则指定了处理表单提交请求的 action 类及其验证行为。`<forward>` 元素用于定义成功或失败时转向的页面路径。 #### 结论 通过上述步骤,...
RegUserForm "/> </form-beans> <br/><action-mappings> <action path="/regUserAction" type=" org.cjea.Struts.example.RegUserAction " attribute=" regUserForm " scope="request...
2. **ActionServlet接收请求**:所有的请求首先被ActionServlet捕获,它基于`struts-config.xml`配置文件解析请求,决定调用哪个Action。 3. **ActionFormBean封装数据**:ActionServlet创建一个ActionFormBean实例...
在 Struts 的配置文件 `struts-config.xml` 中注册与 `ActionForm` 关联的动作映射,并设置 `validate="true"` 属性表示启用验证: ```xml <action-mappings> <action attribute="insertUserForm" name=...
- 配置 `struts-config.xml` 文件,定义 Action 映射、表单类等。 ```xml <action-mappings> <action attribute="loginForm" input="/login.jsp" name="loginForm" path="/login" scope="request" ...
// 读取元素属性和值 System.out.println("Attribute : " + eElement.getAttribute("attribute_name")); System.out.println("Element Value : " + eElement.getTextContent()); } } } catch (Exception e) { ...
- `<action-mappings>`:配置Action的映射关系。 - `attribute`:指定ActionForm对象名。 - `input`:输入页面路径。 - `name`:ActionForm的名称。 - `path`:Action的路径。 - `scope`:ActionForm的作用域...
最后,修改`struts-config.xml`文件中的`action-mappings`部分,增加`validate="true"`选项,以便启用验证功能。 ```xml <action-mappings> <action attribute="loginForm" input="/login.jsp" name="loginForm...
type="org.viman.struts.action.LoginAction" validate="true"> </action> </action-mappings> </struts-config> ``` - **Action Mapping**:定义了一个名为`login`的Action映射,其路径为`/login`,并且...