在Struts-config中转发到JSP

时间:2011-12-16 16:06:53

标签: jsp redirect struts actionform

我的时区下午好。

我正在使用struts框架开发一个Web应用程序,在这一刻我正在开发一个屏幕,当用户按下按钮时会出现一个模态窗口,在这里我使用iframe,如下所示:

<iframe src="actionX?data=value" ../>

现在问题是,struts是否有可能将请求直接从ActionForm转发到jsp?在struts-config.xml

中有类似的东西
<action path="/actionX"
           -> type="com.galpenergia.sgt.accoes.ProgramarRutasAction"
            if i do not put nothing in the type attribute , will the actionFormX forward this request directly to jsp in the input attribute ?
            name="actionFormX"
        validate="true"
        input="/programarRutas.jsp">  
    </action>

如果对上述问题的回答是“否”,我该怎么办? 我不想创建一个Action对象,其中在execute方法中我只是将请求转发给JSP.By其他我不能直接从iframe调用jsp因为我需要验证查询字符串是否发送(data = value)是正确的。

我真的被卡住了:(

提前致谢

1 个答案:

答案 0 :(得分:0)

使用struts-extras库中提供的ForwardAction

我不明白不愿意创建Action,尽管已经提供了一个开箱即用的功能。如果你想利用Struts,你需要使用Struts。