下面是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>
我的问题是,
答案 0 :(得分:0)
“type”是指Action的类名。 “parameter”指的是Action的请求参数。
我可以建议找一本关于Struts框架的好书吗?那里有几个。
答案 1 :(得分:0)
http://www.amazon.com/Jakarta-Struts-Pocket-Reference-Cavaness/dp/0596005199
http://struts.apache.org/1.x/userGuide/building_controller.html#actionmapping
答案 2 :(得分:0)
type 元素将动作类名称引用包。
使用参数属性指定请求参数名称。这里请求参数名称是GET_LOAN_DETAIL。 在操作处理程序中指定的请求参数名称是&#34; GET_LOAN_DETAIL&#34;。因此,应将其指定为提交按钮的属性名称。