我尝试使用以下代码重定向发布请求以从其他主机获取json。但是当我测试时,我得到了错误" Unsupported Media Type"并且浏览器还指出重定向请求的内容类型是" text / html"。
有谁知道如何正确设置重定向请求的内容类型?提前谢谢。
@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
String targetUrl = "http://localhost:8080/getJson";
resp.setStatus(HttpServletResponse.SC_TEMPORARY_REDIRECT);
resp.setContentType("application/json");
resp.setHeader("Location", targetUrl);
}