有什么方法可以更改请求URL以指向另一个Web服务器上托管的另一个页面?假设我在Tomcat中托管了一个页面:
<form action="http://localhost:8080/Test/dummy.jsp" method="Post"> <input type="text" name="text"></input> <input type="Submit" value="submit"/> </form>
我使用servlet过滤器拦截请求:
public void doFilter(ServletRequest req, ServletResponse res, FilterChain chain) throws IOException,ServletException { HttpServletRequest request = (HttpServletRequest) req; chain.doFilter(req, res); return; }
我要更改的请求URL指向另一个Web服务器中托管的PHP页面http://localhost/display.php。我知道我可以使用response.sendRedirect,但在我的情况下将无法使用,因为它会丢弃所有POST数据。有什么方法可以更改请求URL,以便chain.doFilter(req, res);将我转发到该PHP页面吗?
http://localhost/display.php
response.sendRedirect
chain.doFilter(req, res);
HttpServletResponse#sendRedirect()默认情况下,发送HTTP 302重定向,该重定向确实隐式创建了一个新的GET请求。
HttpServletResponse#sendRedirect()
您需要HTTP 307重定向。
response.setStatus(307); response.setHeader("Location", "http://localhost/display.php");
(我假设该http://localhostURL仅是示例性的;显然,这在生产中将行不通)
http://localhost
注意:浏览器会在继续之前要求您确认。
另一种选择是代理:
URLConnection connection = new URL("http://localhost/display.php").openConnection(); connection.setDoOutput(true); // POST // Copy headers if necessary. InputStream input1 = request.getInputStream(); OutputStream output1 = connection.getOutputStream(); // Copy request body from input1 to output1. InputStream input2 = connection.getInputStream(); OutputStream output2 = response.getOutputStream(); // Copy response body from input2 to output2.
注意:为此,最好使用servlet而不是过滤器。
同样,另一种选择是将PHP代码移植到JSP/Servlet代码。同样,另一个选择是通过Quercus之类的PHP模块直接在Tomcat上运行PHP。