了解struts.1配置文件

时间:2010-07-12 16:41:56

标签: struts

下面是struts配置文件中的代码

<action-mappings type="com.jpmc.invconfirm.presentation.struts.controllers.InvestorConfirmActionMapping">
    <action path="/getLoanDetail" 
            type="com.jpmc.invconfirm.base.presentation.struts.actions.StrutsIoCAction" 
            name="InvConfLoanDetailPageLoadForm" 
            parameter="GET_LOAN_DETAIL"  
            input="welcomePage" 
            validate="false"
            scope="request">
        <forward name="success" path="loandetail" />
        <forward name="failure" path="sysError" />
    </action>
</action-mappings>

我的问题是,

  1. 元素中的“type”属性是什么。
  2. 元素中的“PARAMETER”属性将起什么作用。

3 个答案:

答案 0 :(得分:0)

“type”是指Action的类名。 “parameter”指的是Action的请求参数。

我可以建议找一本关于Struts框架的好书吗?那里有几个。

答案 1 :(得分:0)

答案 2 :(得分:0)

type 元素将动作类名称引用包。

使用参数属性指定请求参数名称。这里请求参数名称是GET_LOAN_DETAIL。 在操作处理程序中指定的请求参数名称是&#34; GET_LOAN_DETAIL&#34;。因此,应将其指定为提交按钮的属性名称。