使用tomcat阀重定向POST请求

时间:2014-07-17 12:02:12

标签: java tomcat tomcat-valve

我需要重定向 https://ipaddress/index.jsp to https://ipaddress/v1/index.jsp

Tomcat版本:7.0.32

我在server.xml中配置了一个阀门 <Valve className="com.mycompnay.tomcatvalve.RedirectValve" portal="v1" />

这里我有一个扩展ValveBase的类,我在匹配一些模式后执行response.sendRedirect。 这适用于GET请求。但是如何重定向POST请求。

提前致谢

1 个答案:

答案 0 :(得分:0)

尝试以这种格式提供工作response.sendRedirect(response.encodeRedirectUrl("/v1/index.jsp"))

我假设您使用了Servlet并通过该

重定向