javaee 过滤器加cookie实现自动登录

news2024/11/16 17:54:56

思路

在这里插入图片描述如上图,如果勾选了自动登录,在登录时,就将用户名和密码存储到cookie中,当下次访问首页时,过滤器先拦截请求,获取下cookie中的账号密码,然后如果cookie中的账号密码有效就将登录信息存储到session中。这就是自动登录了。
在这里插入图片描述

AutoLoginFilter

package com.yyy.filter;

import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;

import javax.servlet.Filter;
import javax.servlet.FilterChain;
import javax.servlet.FilterConfig;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import javax.servlet.annotation.WebFilter;
import javax.servlet.http.Cookie;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;

import com.yyy.util.DbHelper;

/**
 * Servlet Filter implementation class AutoLoginFilter
 */
@WebFilter("/AutoLoginFilter")
public class AutoLoginFilter implements Filter {

    /**
     * Default constructor. 
     */
    public AutoLoginFilter() {
        // TODO Auto-generated constructor stub
    }

	/**
	 * @see Filter#destroy()
	 */
	public void destroy() {
		// TODO Auto-generated method stub
	}

	/**
	 * @see Filter#doFilter(ServletRequest, ServletResponse, FilterChain)
	 */
	public void doFilter(ServletRequest request1, ServletResponse response1, FilterChain chain) throws IOException, ServletException {
		// TODO Auto-generated method stub
				//过滤的操作放在此方法中
				HttpServletRequest request=(HttpServletRequest)request1;
				HttpServletResponse response=(HttpServletResponse)response1;		
				
				//判断cookie中是否有用户信息
				Cookie[] cookies=  request.getCookies();
				
				String uname=null;
				String pwd=null;
				if(cookies!=null)
				{
					//遍历每一个cookie对象
					for(Cookie cookie:cookies)
					{
						 if(cookie.getName().equals("login_uname"))
							  uname= cookie.getValue();
						 
						 if(cookie.getName().equals("login_pwd"))
							  pwd=cookie.getValue();
					}
					
					//如果有 则获取cookie中的用户信息 连接数据库查询是否能登录
					if(uname!=null && pwd!=null)
					{
						
						String sql="select * from user where uname=? and upwd=?";
						List<Object> paralist=new ArrayList<Object>();
						paralist.add(uname);
						paralist.add(pwd);
						DbHelper dbHelper=new DbHelper();
						List<Map<String, Object>> map=  dbHelper.executeQuery(sql, paralist);
						
						//如果能登录 则存入session 
						if(map.size()>0 && map!=null)
						{
							HttpSession session= request.getSession();
							
							session.setAttribute("uname", uname);
						}
					}
				}		
				

				//放行
				
				chain.doFilter(request, response);
	}

	/**
	 * @see Filter#init(FilterConfig)
	 */
	public void init(FilterConfig fConfig) throws ServletException {
		// TODO Auto-generated method stub
	}

}

ExitServlet

package com.yyy.servlet;

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

/**
 * Servlet implementation class ExitServlet
 */
@WebServlet("/ExitServlet")
public class ExitServlet extends HttpServlet {
	private static final long serialVersionUID = 1L;
       
    /**
     * @see HttpServlet#HttpServlet()
     */
    public ExitServlet() {
        super();
        // TODO Auto-generated constructor stub
    }

	/**
	 * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
	 */
	protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
		// TODO Auto-generated method stub
				//response.getWriter().append("Served at: ").append(request.getContextPath());
			
				//销毁session
				HttpSession session=request.getSession();
				
				session.invalidate();
				
				
				//销毁cookie
				Cookie cookie=new Cookie("login_uname", null);
				cookie.setPath("/");
				cookie.setMaxAge(0);
				
				Cookie cookie2=new Cookie("login_pwd", null);
				cookie2.setPath("/");
				cookie2.setMaxAge(0);
				
				response.addCookie(cookie);
				
				response.addCookie(cookie2);
				
				response.sendRedirect("guanwang.jsp");
	}

	/**
	 * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
	 */
	protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
		// TODO Auto-generated method stub
		doGet(request, response);
	}

}

LoginServlet

package com.yyy.servlet;

import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;

import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.Cookie;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;

import com.yyy.util.DbHelper;

/**
 * Servlet implementation class LoginServlet
 */
@WebServlet("/LoginServlet")
public class LoginServlet extends HttpServlet {
	private static final long serialVersionUID = 1L;
       
    /**
     * @see HttpServlet#HttpServlet()
     */
    public LoginServlet() {
        super();
        // TODO Auto-generated constructor stub
    }

	/**
	 * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
	 */
	protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
		// TODO Auto-generated method stub
				//response.getWriter().append("Served at: ").append(request.getContextPath());
			
				//获得用户信息
				String uname=request.getParameter("uname");
				String pwd=request.getParameter("pwd");
				//判断是否登录成功
				String sql="select * from user where uname=? && upwd=?";
				List<Object> paramList=new ArrayList<Object>();
				paramList.add(uname);
				paramList.add(pwd);	
				DbHelper dbHelper=new DbHelper();
				List<Map<String, Object>> map=  dbHelper.executeQuery(sql, paramList);
				if(map!=null && map.size()>0)
				{
				   //判断是否选择了自动登录
					if(request.getParameter("ck")!=null)
					{
						 //存入cookie
						 Cookie cookie=new Cookie("login_uname", uname);
						 cookie.setPath("/");
						 cookie.setMaxAge(3600);
						 response.addCookie(cookie);
						 
						 Cookie cookie2=new Cookie("login_pwd", pwd);
						 cookie2.setPath("/");
						 cookie2.setMaxAge(3600);
						 response.addCookie(cookie2);	
						 
					}
					
					//登录成功  存session
					HttpSession session=request.getSession();
					session.setAttribute("uname", uname);
					
					response.sendRedirect("guanwang.jsp");
					
				}
				else
					response.getWriter().println("用户名或密码出错");
	}

	/**
	 * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
	 */
	protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
		// TODO Auto-generated method stub
		doGet(request, response);
	}

}

DbHelper

package com.yyy.util;

import java.io.IOException;
import java.io.InputStream;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.ResultSetMetaData;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Properties;

import javax.print.attribute.standard.RequestingUserName;

public class DbHelper {
	private Connection connection;
	
	private PreparedStatement preparedStatement;
	
	private ResultSet resultSet;
	
	public DbHelper()
	{
		getConnection();
	}
	//打开连接
	public void getConnection()
	{
		 try {			
			  if(connection==null || connection.isClosed())
			  {
				//将文件中的数据转到集合中 再从集合取数据
				Properties properties=new Properties();
				
				InputStream iStream=this.getClass().getResourceAsStream("/db2.properties");
				
			    properties.load(iStream);
			    
			    //获得集合中数据
			    String driver=properties.getProperty("driver");
			    
			    String url=properties.getProperty("url");
			    
			    String uname=properties.getProperty("uname");
			    
			    String pwd=properties.getProperty("pwd");
				  
				  
			    Class.forName(driver);
			 
			    this.connection= DriverManager.getConnection(url, uname, pwd);
			  }
			
		} catch (ClassNotFoundException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		} catch (SQLException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		} catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}		 
		 
	}	
	
	//执行 增 删 改 语句 返回受影响的行数
	public int executeUpdate(String sql,List<Object> paramList)
	{
		 getConnection();   //打开连接
		 
		 try {
			
			 this.preparedStatement=connection.prepareStatement(sql);
			
			 //给sql语句的参数赋值
			 if(paramList!=null)
			 {
				  for(int i=0;i<paramList.size();i++)
				  {
					  this.preparedStatement.setObject(i+1, paramList.get(i));
				  }
			 }
			 
			 return this.preparedStatement.executeUpdate();
			 
			 
			
		} catch (SQLException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}finally {
			close();
		}
		 
		return 0;
	}
	
	//执行查询
	public List<Map<String, Object>> executeQuery(String sql,List<Object> paramList)
	{
		 getConnection();
		 
		 try {
			 this.preparedStatement=connection.prepareStatement(sql);
			
			 //给sql的参数赋值
			 if(paramList!=null)
			 {
				  for(int i=0;i<paramList.size();i++)
				  {
					    this.preparedStatement.setObject(i+1, paramList.get(i));
				  }
			 }
			 
			 //执行查询
			 this.resultSet= this.preparedStatement.executeQuery();
			 
			 //定义一个集合用来存放结果集中的数据
			 List<Map<String, Object>> resultList=new ArrayList<Map<String,Object>>();
			 
			 //读取结果集中的数据存入到集合resultList中
			 
			 //获得结果集中的列名
			 ResultSetMetaData resultSetMetaData= this.resultSet.getMetaData();
			 
			 
			 while(resultSet.next())
			 {
				 //存放结果集中的每一条记录  uid=1 uname="zhangsan" pwd="123"
				 Map<String, Object> map=new HashMap<String,Object>();
				 
				 for(int i=1;i<=resultSetMetaData.getColumnCount();i++)
				 {
					   //获得第i列的名称
					   String columnname=  resultSetMetaData.getColumnName(i);
				       //获得第i列的值
					   Object columnvalue=resultSet.getObject(columnname);
					   
					   map.put(columnname, columnvalue);
					   
				 }
				 
				 //将map存入到list中
				 resultList.add(map);
				 
			 }
			 
			 return resultList;
			
		} catch (SQLException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}finally {
			close();
		}
		 
		return null;
		 
	}
	
	//关闭连接
	public void close()
	{
		 if(resultSet!=null)
			try {
				resultSet.close();
			} catch (SQLException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}
		 
		 if(preparedStatement!=null)
			try {
				preparedStatement.close();
			} catch (SQLException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}
		 
		 if(connection!=null)
			try {
				connection.close();
			} catch (SQLException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}
	}
}

db2.properties

driver=com.mysql.jdbc.Driver
url=jdbc:mysql://localhost:3306/itstar?characterEncoding=utf-8
uname=itstar
pwd=yyy123456

guanwang.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>

<%
   if(session.getAttribute("uname")!=null)
   {
%>
<%=session.getAttribute("uname") %> 欢迎您,<a href="ExitServlet">退出</a>
<% 	   
   }	  
   else
   {
%>
            亲,请<a href="login.jsp">登录</a>
<%
   }
%>


</body>
</html>

login.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>

<form action="LoginServlet" method="post">
<pre>
  用户名:<input type='text' name='uname' />
  密码:<input type='password' name='pwd' />
  <input type='checkbox' value='ck' name='ck' />自动登录
 <input type='submit' name='sub' value='登录' />
</pre>
</form>

</body>
</html>

web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
  <display-name>web5</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>
  <session-config>
    <session-timeout>1</session-timeout>
  </session-config>
  
  <!-- 注册过滤器 -->
  <filter>
    <filter-name>AutoLoginFilter</filter-name>
    <filter-class>com.yyy.filter.AutoLoginFilter</filter-class>
  </filter>
  <filter-mapping>
    <filter-name>AutoLoginFilter</filter-name>
    <url-pattern>/*</url-pattern>
  </filter-mapping>
</web-app>

数据库驱动jar包

在这里插入图片描述

允许效果

在这里插入图片描述
在这里插入图片描述

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/676841.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

Paddle FastDeploy 执行Cmake 时错误处理方法

1.Paddle FastDeploy 在cmake 时的命令执行报错处理 命令是参考官网的&#xff0c;如下: git clone https://github.com/PaddlePaddle/FastDeploy.git cd FastDeploy mkdir build && cd build cmake .. -G "Visual Studio 16 2019" -A x64 \-DENABLE_ORT_BA…

【MyBatis-Plus】入门案例与简介

1&#xff0c;MyBatisPlus入门案例与简介 1. 入门案例 MybatisPlus(简称MP)是基于MyBatis框架基础上开发的增强型工具&#xff0c;旨在简化开发、提供效率。 开发方式 基于MyBatis使用MyBatisPlus基于Spring使用MyBatisPlus基于SpringBoot使用MyBatisPlus SpringBoot刚刚我…

工资管理系统(学校期末作业)

一、 题目要求 1、需求分析 工资信息存放在文件中&#xff0c;提供文件的输入、输出等操作&#xff1b;要浏览&#xff0c;提供显示、排序操作&#xff1b;查询功能要求实现查找操作&#xff1b;提供键盘式选择菜单以实现功能选择。 2、总体设计 系统可分为信息输入、信息添…

洛谷 P2782 友好城市 排序 动态规划

题目描述 有一条横贯东西的大河&#xff0c;河有笔直的南北两岸&#xff0c;岸上各有位置各不相同的N个城市。北岸的每个城市有且仅有一个友好城市在南岸&#xff0c;而且不同城市的友好城市不相同。每对友好城市都向政府申请在河上开辟一条直线航道连接两个城市&#xff0c;但…

servlet 技能总结

Servlet介绍 Servlet是Server Applet的简称&#xff0c;称为服务端小程序&#xff0c;是JavaEE平台下的技术标准&#xff0c;基于Java语言编写的服务端程序。Web容器或应用服务器实现了Servlet标准所以Servlet需运行在Web容器或应用服务器中。Servlet主要功能在于能在服务器中执…

【前端技术】uni-app 01:快速开始

开个新坑&#xff0c;学习一下 uni-app&#xff0c;之后也想 uni-app 来做些事&#xff0c;虽然我主业是后端&#xff0c;但 uni-app 其作为一个高效生产力工具&#xff0c;个人认为非常有必要学习一下~ 目录 1 uni-app 介绍 1.1 uni-app 由来 1.2 为什么选择 uni-app 1.3 …

Win7 64位 VS2015及MinGW环境编译矢量库agg-2.5和cairo-1.14.6

书接上文&#xff0c;昨天装了MinGW&#xff0c;主要原因之一是要用到MSYS&#xff0c;所以顺手把FFMPEG又编译了一遍。 回到主题&#xff0c;其实我是想编译矢量库&#xff0c;因为最近要学习一些计算几何算法&#xff0c;所以找个方便的2D画图库就很重要。 说白了其实是懒得…

我把GPT 的学习轨迹可视化了竟和人类十分类似 |ACL2023

回想一下我们小时候是如何习得一门语言的&#xff1f;一般而言&#xff0c;在人类婴儿出生第一年内&#xff0c;最开始婴儿只能模仿式的说出一些“音素”&#xff0c;说出一些最简单与基本的单词或句子&#xff0c;而伴随着成长&#xff0c;在大约一岁到三岁的阶段&#xff0c;…

windows进程结构体

了解进程线程的概念后&#xff0c;我们就来看看windows里面的进程长什么样子的。进程本质上就是一个结构体。在Linux里面也称之为进程描述符。当操作系统创建一个进程的时候&#xff0c;它会填充一个结构体&#xff0c;往这个结构体里写入数据&#xff0c;这个结构体就用于管理…

Queue,List,Deque联系

如图所示&#xff0c;可以得出LinkedList既可以是双向链表也可以是双端队列&#xff0c;Deque接口继承了Queue接口 Queue add(E):boolean 在队尾添加元素&#xff0c;添加成功返回true&#xff0c;如果队列已满无法添加则抛出异常。offer(E):boolean 在队尾添加元素&#xff0…

linux mail -s发送邮件异常解决

异常&#xff1a; Error initializing NSS: Unknown error -8015. "/root/dead.letter" 11/301 . . . message not sent. 出现此问题&#xff0c;大概率是和证书相关。如果没有安装证书&#xff0c;请先安装&#xff1a; 1&#xff0c;下载 yum -y install mailx …

Python采集某xsp内容, m3u8视频内容下载

前言 大家早好、午好、晚好吖 ❤ ~欢迎光临本文章 环境使用: Python 3.8 Pycharm 专业版 模块使用: import requests >>> pip install requests import re 正则表达式 解析数据 import json 基本步骤去实现 一. 数据来源分析 通过开发者工具进行抓包分析, 分…

轻松构建交互式应用程序:探索Gradio Components模块的神奇世界!

❤️觉得内容不错的话&#xff0c;欢迎点赞收藏加关注&#x1f60a;&#x1f60a;&#x1f60a;&#xff0c;后续会继续输入更多优质内容❤️ &#x1f449;有问题欢迎大家加关注私戳或者评论&#xff08;包括但不限于NLP算法相关&#xff0c;linux学习相关&#xff0c;读研读博…

抽头延迟线信道模型

本专栏包含信息论与编码的核心知识&#xff0c;按知识点组织&#xff0c;可作为教学或学习的参考。markdown版本已归档至【Github仓库&#xff1a;https://github.com/timerring/information-theory 】或者公众号【AIShareLab】回复 信息论 获取。 文章目录 时变多径信道的信道…

突破技术边界,开创“粽“享未来

突破技术边界&#xff0c;开创“粽“享未来 端午节的由来端午节的习俗端午祈福 博主 默语带您 Go to New World. ✍ 个人主页—— 默语 的博客&#x1f466;&#x1f3fb; 《java 面试题大全》 &#x1f369;惟余辈才疏学浅&#xff0c;临摹之作或有不妥之处&#xff0c;还请读…

南京阿里云代理商:阿里云服务器的可扩展性和弹性如何?是否支持按需付费?

南京阿里云代理商&#xff1a;阿里云服务器的可扩展性和弹性如何&#xff1f;是否支持按需付费&#xff1f;   一、阿里云服务器的可扩展性   阿里云作为业界知名的云服务提供商&#xff0c;其服务器具有极强的可扩展性。可扩展性主要体现在以下几方面&#xff1a;   1. …

行为型模式--状态模式

目录 举例 状态模式 定义 结构 代码实现 优缺点 优点&#xff1a; 缺点&#xff1a; 使用场景 举例 【例】通过按钮来控制一个电梯的状态&#xff0c;一个电梯有开门状态&#xff0c;关门状态&#xff0c;停止状态&#xff0c;运行状态。每一 种状态改变&#xff0c;都…

Xdebug的安装及使用

Xdebug的安装及使用 前言一、Xdebug如何配置二、PHPstrom配置三、Xdebug的使用1.面板功能解释2.调试功能详解 四、Xdebug原理 前言 软件调试是泛指重现软件缺陷问题,定位和 查找问题根源,最终解决问题的过程,编写的程序不可能一直不出错&#xff0c;所以调试很重要调试通常有如…

西安阿里云代理商:阿里云服务器的可扩展性和弹性如何?是否支持按需付费?

西安阿里云代理商&#xff1a;阿里云服务器的可扩展性和弹性如何&#xff1f;是否支持按需付费&#xff1f;   一、阿里云服务器的可扩展性   阿里云作为业界知名的云服务提供商&#xff0c;其服务器具有极强的可扩展性。可扩展性主要体现在以下几方面&#xff1a;   1. …

小米note3刷机-从miui12刷回miui9

小米note3刷机-从miui12刷回miui9 文章目录 小米note3刷机-从miui12刷回miui9解除BL锁进入开发者模式遇到的问题解决BootLoader无法连接电脑的问题 导包 3月份原本想买一部小米6回来刷机,结果发现小米6的二手价格有一点点high。然后就选了一个 大平版 小米note3 但是直到昨天…