在测试Tomcat重定向时,浏览器自动下载文件,而不是转向网页的问题

//开始访问的页面 @WebServlet("/SixthServlet") public class SixthServlet extends HttpServlet { @Override protected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { //1.设置响应状态码 // response.setStatus(302); //2.定向到哪里去: 其实就是设置响应消息头,Location // response.setHeader(“Location”, “SenvthServlet”); //使用重定向方法 resp.sendRedirect(“http://localhost:8080/SenvthServlet”); } }
//重定向

在测试Tomcat重定向时,浏览器自动下载文件,而不是转向网页的问题最先出现在Python成神之路

版权声明:
作者:cc
链接:https://www.techfm.club/p/20484.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>