我正在使用第三方网站,该网站对我指定的网址发布回复。在调试处理此路径的Action类时,我发现重定向后请求参数为空。
我提供的网址格式为http://example.com/Registration.do
这是我的struts-config.xml条目。
<action path="/Registration" type="com.example.RegistrationAction">
<forward name="success" path="/registration/success.jsp"></forward>
</action>
有没有办法从外部网站提交表单,以便正确传递请求参数?