是否可以在没有FormBean的情况下使用Action(Struts 1)?

问题描述 投票:0回答:1

我正在学习strut 1,是的,旧的。

是否可以在没有FormBean的情况下使用Action(例如Dispatch Action)?

[我知道可以使用FowardAction,但是我想使用DispatchAction,因为我需要使用Controller,但不需要FormBean,我将从查询字符串中获取信息。

java struts-1 struts1
1个回答
0
投票

是的,您可以这样做[]

<action-mappings>

    <action path="/myAction" name="myAction" scope="request" type="com.example.app.action.MyAction">
    </action>

</action-mappings>
© www.soinside.com 2019 - 2024. All rights reserved.