`
在水伊方
  • 浏览: 111062 次
  • 性别: Icon_minigender_1
  • 来自: 福州
社区版块
存档分类
最新评论

struts-config里action-mappings元素里的attribute属性用途

阅读更多

以下几点是网上的一些关于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;   
    }
分享到:
评论

相关推荐

    SSH开发纪要整合解决四大问题(中文、jar包冲突、延时加载、模块化)文档

    &lt;struts-config&gt; &lt;data-sources /&gt; &lt;form-beans &gt; &lt;form-bean name="addForm" type="com.lmf118.struts.form.AddForm" /&gt; &lt;/form-beans&gt; &lt;global-exceptions /&gt; &lt;global-forwards /&gt; &lt;action-mappings &gt; ...

    struts基于mvc的开发代码

    &lt;struts-config&gt; &lt;data-sources /&gt; &lt;form-beans &gt; &lt;form-bean name="testForm" type="com.yourcompany.struts.form.TestForm" /&gt; &lt;form-bean name="test1Form" type="com.yourcompany.struts.form.Test1Form" /&gt;...

    struts配置元素详解

    本文将深入解析Struts配置文件`struts-config.xml`中的各个核心元素及其用法。 首先,`struts-config.xml`是Struts框架的核心配置文件,它定义了应用的各个组件和它们之间的交互方式。其根元素是`&lt;struts-config&gt;`...

    struts2的入门开发

    &lt;action attribute="loginForm" input="/login.jsp" name="loginForm" path="/login" scope="request" type="test.action.LoginAction"&gt; &lt;/action&gt; &lt;/action-mappings&gt; &lt;message-resources parameter="test....

    Struts常见错误汇总

    1. **检查配置文件**:确保 `struts-config.xml` 文件中的 ActionForm 类型指定正确,即 `&lt;action-mappings&gt;` 中的 `type` 属性应指向正确的 ActionForm 类。 2. **确认对象存储**:确保在 Action 中通过 `request....

    Struts1.2实现MySQL数据库分页.txt

    `struts-config.xml` 是Struts框架的核心配置文件,用于配置Action、Form Beans等。下面是一个简单的配置示例: ```xml &lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;!DOCTYPE struts-config PUBLIC "-//Apache ...

    Struts常见错误汇总.txt

    这通常是因为在 `struts-config.xml` 文件中配置的 `&lt;action&gt;` 元素中的 `type` 属性值不正确,或者该 ActionForm 在实际执行过程中并未被放入请求作用域中。 **解决方案:** 1. **检查配置文件**:确保 `struts-...

    Struct-config.xml的配置文件

    `&lt;action-mappings&gt;`元素则用于配置Action的映射。Action是处理用户请求的核心,它实现了业务逻辑。如: ```xml &lt;action path="/userAtion" name="userForm" input="/userAtion.jsp" attribute="user" validate=...

    J2EE综合—Struts常见错误的全面总结

    - 检查`struts-config.xml`文件中是否存在`&lt;action-mappings&gt;`和`&lt;form-beans&gt;`元素。 - 确保所有Action和ActionForm都已在配置文件中正确定义。 ##### 6. Cannot retrieve mapping for action XXX.jsp **错误描述...

    structs入门经验谈

    其中 `&lt;form-bean&gt;` 用于指定表单 bean 的类型,而 `&lt;action-mappings&gt;` 则指定了处理表单提交请求的 action 类及其验证行为。`&lt;forward&gt;` 元素用于定义成功或失败时转向的页面路径。 #### 结论 通过上述步骤,...

    Struts原理、开发及项目实施

    RegUserForm "/&gt; &lt;/form-beans&gt; &lt;br/&gt;&lt;action-mappings&gt; &lt;action path="/regUserAction" type=" org.cjea.Struts.example.RegUserAction " attribute=" regUserForm " scope="request...

    精通struts 光盘

    2. **ActionServlet接收请求**:所有的请求首先被ActionServlet捕获,它基于`struts-config.xml`配置文件解析请求,决定调用哪个Action。 3. **ActionFormBean封装数据**:ActionServlet创建一个ActionFormBean实例...

    Struts使用技巧和注意事项

    在 Struts 的配置文件 `struts-config.xml` 中注册与 `ActionForm` 关联的动作映射,并设置 `validate="true"` 属性表示启用验证: ```xml &lt;action-mappings&gt; &lt;action attribute="insertUserForm" name=...

    Struts+Spring+Hibernate练习(完整)

    - 配置 `struts-config.xml` 文件,定义 Action 映射、表单类等。 ```xml &lt;action-mappings&gt; &lt;action attribute="loginForm" input="/login.jsp" name="loginForm" path="/login" scope="request" ...

    java练习之XML读取

    // 读取元素属性和值 System.out.println("Attribute : " + eElement.getAttribute("attribute_name")); System.out.println("Element Value : " + eElement.getTextContent()); } } } catch (Exception e) { ...

    ajax+json实现多级联动菜单

    - `&lt;action-mappings&gt;`:配置Action的映射关系。 - `attribute`:指定ActionForm对象名。 - `input`:输入页面路径。 - `name`:ActionForm的名称。 - `path`:Action的路径。 - `scope`:ActionForm的作用域...

    StrutsSpringHibernate实例

    最后,修改`struts-config.xml`文件中的`action-mappings`部分,增加`validate="true"`选项,以便启用验证功能。 ```xml &lt;action-mappings&gt; &lt;action attribute="loginForm" input="/login.jsp" name="loginForm...

    Ajax验证用户名是否存在例

    type="org.viman.struts.action.LoginAction" validate="true"&gt; &lt;/action&gt; &lt;/action-mappings&gt; &lt;/struts-config&gt; ``` - **Action Mapping**:定义了一个名为`login`的Action映射,其路径为`/login`,并且...

Global site tag (gtag.js) - Google Analytics