`
wjc_3306
  • 浏览: 30247 次
  • 性别: Icon_minigender_1
  • 来自: 山西
社区版块
存档分类
最新评论

关于JAVA中struts-config里action元素里的attribute属性

 
阅读更多
转自:http://hi.baidu.com/%D1%C7%D6%DE%C6%C0%C2%DB/blog/item/0704e246cfdb130c6a63e5fe.html

这是在网上查到的关于attribute的解释.
1)应用前提,attribute只有在设置了name后才有意义。
2)attribute可以实现对象的重用,即如果设置了attribute属性,在创建actionform是,会先去查找相应的scope中是否有此对象,如果有,则重用,否则创建新的对象。
3)当你将创建的acitonForm保存到相应的scope中时,你想用一个更有意义的名字来访问它时,它就有意义了。

可是,看到"一个更有意义的名字的时候", 我好像有点理解了
<action
attribute="newLoginForm"
name="loginForm"
type="loginAction"
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配置元素详解

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

    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; ...

    SSH错误集锦

    一般删除 name 属性值就可以了,这个值就是 struts-config.xml 中定义的 action 的 name 的值。 2. “No bean found under attribute key XXX” 这个错误通常发生在 Struts-config.xml 里定义了一个 ActionForm,...

    struts常见异常及处理

    - **异常描述**:在 Struts 配置文件 `struts-config.xml` 中定义了一个 ActionForm,但 `type` 属性指定的类不存在或者在 Action 的定义中,`name` 或 `attribute` 属性指定的 ActionForm 不存在。 - **解决方案**...

    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;...

    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....

    Struct-config.xml的配置文件

    这段配置表示,当用户请求以"/userAtion"开头的URL时,Struts会使用`UserAction`类处理该请求,`name`属性与之前定义的`&lt;form-bean&gt;`中的`name`属性匹配,确保Action使用正确的ActionForm来处理请求数据。...

    Struts常见错误汇总.txt

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

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

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

    Struts-Tiles.pdf

    ### Struts Tiles 框架详解 ...Tiles 支持继承的概念,这意味着一个 Tiles 定义可以从另一个定义中继承属性和布局。这为复用代码提供了更大的灵活性,并且可以使页面结构更加清晰。 **示例** ```xml ...

    Struts程序的执行流程[整理].pdf

    - `ActionServlet`根据`Struts-config.xml`文件中配置的`&lt;action&gt;`元素来找到合适的自定义`Action`(扩展自`Action`类的类)进行处理。例如,`/login`节点匹配`LoginAction`,并将表单数据封装到`LoginForm`对象中...

    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 ...

    Struts1配置

    在`struts-config.xml`中,`&lt;action&gt;`标签是用来配置Action的核心元素,其主要属性包括: 1. `path`: 这个属性定义了Action的URL路径,不包含文件扩展名`.do`。例如,`/Register`。Struts1会自动处理`.do`扩展名的...

    struts1属性详解

    在Struts 1中,`Action`元素是`struts-config.xml`配置文件的核心部分,它定义了控制器的行为。以下是对`struts1.x_action`属性的详细解释: 1. **attribute**: `attribute`属性用于指定`ActionForm`对象在请求或...

    spring 和 struts整合

    在`struts-config.xml`中,我们需要定义Action,但这里的类型不是直接指向Action类,而是Spring的`DelegatingActionProxy`。这是因为Spring将接管Action的实例化和管理,例如: ```xml &lt;action attribute=...

    一个简单的应用Struts中tiles的例子

    Struts和Tiles是Java Web开发中的两个重要框架,它们常被结合使用来构建高效、可维护的MVC(模型-视图-控制器)应用程序。在本示例中,我们将深入探讨如何在一个简单的应用中整合Struts与Tiles。 Struts是一个开源...

Global site tag (gtag.js) - Google Analytics