response重定向

 

 

public class RedirectServlet extends HttpServlet {
    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        resp.sendRedirect("/response_war/image");
    }

 

jsp页面表单请求后再转发:

index。jsp

 

 

/login

 

success.jsp

 

 

复制代码
<html>
<body>
<h2>Hello World!</h2>
<%@ page pageEncoding="UTF-8"%>
<form action="${pageContext.request.contextPath}/login" method="get" >
    用户名<input type="text" name="username"><br>
    密码<input type="password" name="password"><br>
    <input type="submit">
</form>
</body>
</html>
复制代码
复制代码
public class RequestTest extends HttpServlet {
    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        System.out.println("进入了这个请求" );
        String username = req.getParameter("username");
        String password = req.getParameter("password");
        System.out.println(username+":"+password);
        resp.sendRedirect("/response_war/aa.jsp");
    }
}
复制代码
复制代码
%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>hihihih</title>
</head>
<body>
<h1>goodgoodgoodgood</h1>
</body>
</html>
复制代码

 

posted on   大风吹过12138  阅读(21)  评论(0编辑  收藏  举报

相关博文:
阅读排行:
· PowerShell开发游戏 · 打蜜蜂
· 在鹅厂做java开发是什么体验
· 百万级群聊的设计实践
· WPF到Web的无缝过渡:英雄联盟客户端的OpenSilver迁移实战
· 永远不要相信用户的输入:从 SQL 注入攻防看输入验证的重要性
点击右上角即可分享
微信分享提示