⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 logoutservlet.java

📁 这是一个用jsp+Oracle开发的联系人客户关系管理系统!
💻 JAVA
字号:
package com.servlet;

import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;
import com.util.Configuration;

public class LogoutServlet
    extends HttpServlet {
  public void doGet(HttpServletRequest req, HttpServletResponse res) throws
      IOException, ServletException {
    HttpSession session = req.getSession(true);
    session.setAttribute("login", null);
    res.sendRedirect("login.jsp");
  }

  public void doPost(HttpServletRequest req, HttpServletResponse res) throws
      IOException, ServletException {
    doGet(req, res);

  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -