`
holmessong
  • 浏览: 14772 次
  • 来自: ...
最近访客 更多访客>>
社区版块
存档分类
最新评论

action-mappings之attribute属性 [转]

阅读更多

action-mappings之attribute属性(zz)

在很多时候,action mapping中的attribute 和 name 这两个属性一直困扰我,今天我觉得是该痛下决心拔掉这颗钉子的时候了。

翻看一些资料。。。。。

在《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);
       } else {
           session = request.getSession();
           instance = (Actionform) session.getAttribute(attribute);
       }
       。。。
       。。。
       
       
       }
       
       
下面又有一个问题浮出水面:如果我没有在action mapping中指定attribute呢,那struts 是如何解决的?
答案很简单,如果单从结果上看,此时struts使用的name的值,为什么呢,看struts源代码:

   /**
    * The request-scope or session-scope attribute name under which our
    * form bean is accessed, if it is different from the form bean's
    * specified <code>name</code>.
    *该代码在:org.apache.struts.config.ActionConfig中
    */
   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;
   }

分享到:
评论

相关推荐

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

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

    &lt;action-mappings &gt; &lt;action attribute="addForm" input="/add.jsp" --错误时跳转的页面 name="addForm" --Frombean的名字 path="/add" --路径 scope="request" --作用域 type=...

    struts配置元素详解

    `action`元素的属性: - `path`:HTTP请求的路径。 - `attribute`:ActionForm的名称。 - `type`:Action的完全限定类名。 - `validate`:是否进行表单验证,布尔值。 - `input`:验证失败时返回的页面路径。 ...

    struts基于mvc的开发代码

    &lt;action-mappings &gt; &lt;action attribute="testForm" input="/test.jsp" name="testForm" path="/test" scope="request" type="com.yourcompany.struts.action.TestAction" /&gt; &lt;action attribute="test1Form...

    精通struts 光盘

    在这个例子中,`validate="true"`表示在执行Action前需要对`helloForm`进行数据验证,`input`属性定义了验证失败时转向的页面。 #### 结论 掌握Struts框架的核心在于理解其MVC架构设计,特别是ActionServlet、...

    Struts2 自定义标签

    &lt;my:customTag attribute1="value1" attribute2="value2"/&gt; ``` 5. **基于Eclipse开发**: 使用Eclipse作为开发环境,你可以利用其强大的Java和Web开发工具来辅助开发自定义标签。Eclipse支持创建TLD文件、管理...

    StrutsSpringHibernate实例

    &lt;action attribute="loginForm" input="/login.jsp" name="loginForm" path="/login" scope="request" type="com.example.LoginAction" validate="true"&gt; &lt;/action&gt; &lt;/action-mappings&gt; ``` #### 五、...

    structs入门经验谈

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

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

    &lt;/action-mappings&gt; &lt;/struts-config&gt; ``` #### 实现分页逻辑 为了实现分页功能,我们需要在 `ProductShowAction` 类中添加相应的逻辑来处理分页请求。这通常涉及到以下几个步骤: 1. **获取请求参数**:从HTTP...

    Struct-config.xml的配置文件

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

    java练习之XML读取

    &lt;/action-mappings&gt; &lt;/struts-config&gt; ``` Action类会处理HTTP请求,根据业务逻辑决定重定向到哪个视图: ```java import org.apache.struts.action.Action; import org.apache.struts.action.ActionForm; import...

    java urlrewrite解决默认页问题

    &lt;action attribute="entryinfForm" name="entryinfForm" path="/entryinf" scope="request" parameter="method" type="com.ylb.action.EntryinfAction"&gt; &lt;/action&gt; &lt;/action-mappings&gt; ``` #### 四、URL ...

    struts高级日记

    &lt;/action-mappings&gt; ``` 通过这种方式,可以确保页面的 URL 不暴露实际的 JSP 路径,增加了安全性。 #### DispatchAction `DispatchAction` 在 Struts 1.2 版本中引入,它可以将一个 Action 映射到多个处理方法上...

    Struts+Spring+Hibernate练习(完整)

    &lt;action-mappings&gt; &lt;action attribute="loginForm" input="/login.jsp" name="loginForm" path="/login" scope="request" validate="true" type="com.test.struts.action.LoginAction"/&gt; &lt;/action-...

    Struts使用技巧和注意事项

    &lt;action-mappings&gt; &lt;action attribute="insertUserForm" name="insertUserForm" input="regeditUser.jsp" path="/regedit" scope="request" type="com.kevinb.struts.action.RegeditAction" validate="true...

    ssh架构配置文件配置

    - `attribute="addForm"`表示Action关联的表单Bean名称。 - `input="/form/add.jsp"`指定输入页面路径。 - `name="addForm"`指定表单Bean名称。 - `parameter="method"`指定传递的方法名。 - `path="/add"`指定...

    Ajax验证用户名是否存在例

    &lt;action-mappings&gt; &lt;action attribute="loginForm" input="/login.jsp" name="loginForm" path="/login" scope="request" type="org.viman.struts.action.LoginAction" validate="true"&gt; &lt;/action&gt; ...

    学习HIbernate总结

    例如,在`struts-config.xml`中定义一个Action时,可以省略`name`属性,只保留`attribute`属性。如下所示: ```xml &lt;action-mappings&gt; &lt;action path="/login" scope="request" type=...

Global site tag (gtag.js) - Google Analytics