第一个Respose重定向

简介: 第一个Respose重定向

依旧在我们的maven项目中,上一章中有具体的Maven配置

本次主要就是使用response重定向我们的网页,了解response在接收请求后如何做出响应

首先在我们的java源码文件夹下创建一个包和类,(上一张中有具体的配置,就能明白为啥java是源码文件)

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
public class FirstResponse extends HttpServlet {
    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        System.out.println("进入doGet请求");
        //获取request请求中的参数
        String username = req.getParameter("username");
        String password = req.getParameter("password");
        //在控制台打印一下
         System.out.println(username + ":" + password);
        //重定向到一个网页
        resp.sendRedirect("Success.jsp");
    }
    @Override
    protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        super.doGet(req, resp);
    }
}

在我们的web.xml中注册我们的servlet,注册的原因:我们这个浏览器访问的是我们的服务器,因此我们需要把我们的servlet注册到我们的服务器中,并且在注册的同时,我们需要把路径配置,以便于我们的浏览器在我们的服务器中找到我们的servlet。

xml配置

<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
                      http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
         version="4.0"
         metadata-complete="true">
    <servlet>
        <servlet-name>first</servlet-name>
        <servlet-class>Responseqaq.FirstResponse</servlet-class>
    </servlet>
    <servlet-mapping>
        <servlet-name>first</servlet-name>
        <url-pattern>/first</url-pattern>
    </servlet-mapping>
</web-app>

我们写一个index.jsp页面

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>haha</title>
</head>
<body>
<form action="/RedirectAction" method="get">
    用户名:<input type="text" name="username"><br>
    密码:<input type="password" name="password">
    <br>
    <input type="submit" value="登录">
</form>
</body>
</html>

再写一个Success.jsp界面

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>Title</title>
</head>
<body>
<div align=""center>
    <h1>Success!</h1>
</div>
</body>
</html>

最后在浏览器中输入:http://localhost:8888/First.jsp(可以先运行index.jsp页面,然后以输入First.jsp),

点击登录后,我们可以发现跳转界面

相关文章
|
8月前
重定向命令
重定向命令
53 0
|
8月前
|
缓存 网络协议 前端开发
面试题:浏览器中输入URL返回页面过程?
面试题:浏览器中输入URL返回页面过程?
113 0
|
XML JSON API
请求体中的参数通常是通过"&"符号进行连接的
请求体中的参数通常是通过"&"符号进行连接的
106 1
forward内部跳转 和redirect重定向跳转的区别
forward内部跳转 和redirect重定向跳转的区别
130 0
|
算法 网络协议 前端开发
重发和重定向有什么区别与重定向应用
重发和重定向有什么区别与重定向应用
220 0
重发和重定向有什么区别与重定向应用
|
Java 应用服务中间件
我的的第一个服务器
通过一周的使用,分享一下自己初次使用服务器部署文本项目的心得
|
小程序
【小程序】跳转时传递多个参数
【小程序】跳转时传递多个参数
123 0
【小程序】跳转时传递多个参数
|
关系型数据库 MySQL 应用服务中间件
|
小程序 程序员
我的第一个服务器
第一次接触的学习心得
|
搜索推荐 Linux Apache
301重定向是什么?301重定向怎么做?
页面永久性移走(301重定向)是一种非常重要的“自动转向”技术。网址重定向最为可行的一种办法。当用户或搜索引擎向网站服务器发出浏览请求时,服务器返回的HTTP数据流中头信息(header)中的状态码的一种,表示本网页永久性转移到另一个地址。 301永久重定向对SEO无任何不好的影响,而且网页A的的权重都会传达给网页B,对于搜索引擎优化、网站优化来说,给搜索引擎一个友好的信息,告诉它此页面已永久重定向,避免搜索引擎找不到页面。
313 0