就像在 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>