1

就像在 Struts2 中一样,我们可以在 struts.xml 中提供一个参数值,如下所示

<action name="myS2Action" class="demo.myS2Action">
    <result>/myS2Page.jsp</result>
    <param name="myS2Param">value</param>
</action>

在 Struts1 中,有没有办法在 struts-config.xml 中设置一些参数值?

我在 struts-config.xml 中有以下条目

<form-bean name="myS1Form" type="demo.MyS1Form"></form-bean>
<action path="/myS1Action" type="demo.myS1Action" name="myS1Form" scope="request" >
    <forward name="success" path="/myS1Page.jsp"></forward>
</action>
4

1 回答 1

1

在 Strut1 配置中,我们可以使用set-property标签。以下问题与set-property标签的使用有关。

在 Struts1 中,如何在 action 标签中使用 set-property 标签?

于 2012-11-07T05:08:11.987 回答