【Java寒假打卡】JavaWeb-Session

【Java寒假打卡】JavaWeb-Session

    • 概述
    • 常用的方法
    • HttpSession的获取
    • HttpSession的使用

概述

【Java寒假打卡】JavaWeb-Session_第1张图片

常用的方法

【Java寒假打卡】JavaWeb-Session_第2张图片

HttpSession的获取

【Java寒假打卡】JavaWeb-Session_第3张图片

HttpSession的使用

【Java寒假打卡】JavaWeb-Session_第4张图片

  • 在第一个Servlet中获取请求的用户名
  • 获取HttpSession对象
  • 将用户名设置到共享数据中
  • 在第二个Servlet中获取HttpSession对象
  • 获取共享数据用户名
  • 将获取到的用户名响应给客户端浏览器

Servlet1

package com.hfut.servlet;
import javax.servlet.*;
import javax.servlet.http.*;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Date;

public class Servlet1 extends HttpServlet {
    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        // 获取请求的用户名
        String username = req.getParameter("username");
        // 获取httpsession对象
        HttpSession session = req.getSession();
        // 将用户名信息添加到共享数据中
        session.setAttribute("username",username);
    }

    @Override
    protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
//        super.doPost(req, resp);

    }
}


Servlet2

package com.hfut.servlet;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import java.io.IOException;

public class Servlet2 extends HttpServlet {
    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        // 获取请求的用户名
        HttpSession session = req.getSession();
        Object username = session.getAttribute("username");

        // 将用户名相应给浏览器
        resp.getWriter().write(username + "");
        // 那么访问servlet2资源的时候 浏览器就会打印username信息
    }

    @Override
    protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
//        super.doPost(req, resp);

    }
}


【Java寒假打卡】JavaWeb-Session_第5张图片

以上两个servlet拿到的session对象是同一个,保证共享数据资源也是一样的

你可能感兴趣的:(Java全栈开发进阶,#,Servlet,#,JavaWeb,java,servlet,前端)