溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

怎么在Java項(xiàng)目中利用servlet實(shí)現(xiàn)一個(gè)自動(dòng)登錄退出功能

發(fā)布時(shí)間:2021-03-23 15:50:05 來源:億速云 閱讀:202 作者:Leah 欄目:編程語言

怎么在Java項(xiàng)目中利用servlet實(shí)現(xiàn)一個(gè)自動(dòng)登錄退出功能?相信很多沒有經(jīng)驗(yàn)的人對(duì)此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個(gè)問題。

UserDao.java從數(shù)據(jù)庫中查詢用戶名與密碼

//登錄
public User login(User user) throws SQLException {
QueryRunner qr = new QueryRunner(DataSourceUtils.getDataSource());
String sql = "select from user where username = ? and password = ?";
return qr.query(sql, new BeanHandler<User>(User.class),user.getUsername(),user.getPassword());
}
UserService.java
public User login(User user){
try {
return ud.login(user);
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return null;
}

UserServlet.java實(shí)現(xiàn)登錄功能

//登錄
public void login(HttpServletRequest request,
HttpServletResponse response) throws IOException, IllegalAccessException, InvocationTargetException, ServletException{
Map<String,String[]> map = request.getParameterMap();
User user = new User();
BeanUtils.populate(user,map);
if (map.get("autoLogin")!=null){
Cookie username = new Cookie("username", map.get("username")[0]);
username.setMaxAge(6060);
Cookie password = new Cookie("password", map.get("password")[0]);
password.setMaxAge(60*60);
response.addCookie(username);
response.addCookie(password);
}
user = us.login(user);
if (user != null){
request.getSession().setAttribute("user", user);
response.sendRedirect("/ShopStore/default.jsp");
}
else{
request.setAttribute("message", "用戶或密碼錯(cuò)誤!");
request.getRequestDispatcher("/login.jsp").forward(request, response);
}
}

工具類:AutoLoginFilter.java用來實(shí)現(xiàn)自動(dòng)登錄

package com.yinhe.web.filter;
import java.io.IOException;
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.http.Cookie;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import com.yinhe.bean.User;
import com.yinhe.service.UserService;
public class AutoLoginFilter implements Filter{br/>@Override
public void doFilter(ServletRequest request, ServletResponse response,
FilterChain chain) throws IOException, ServletException {
HttpServletRequest req = (HttpServletRequest)request;
HttpServletResponse resp = (HttpServletResponse)response;
//是否已登錄
if (req.getSession().getAttribute("user") == null){//如果已登錄,則啥都不干
//判斷cookie中有沒有賬戶密碼
Cookie[] cookies = req.getCookies();
if (cookies != null){
String username = "";
String userpass = "";
for (Cookie cookie : cookies) {
if (cookie.getName().equals("username")){//找到感興趣的cookie
username = cookie.getValue();
}
if (cookie.getName().equals("password")){//找到感興趣的cookie
userpass = cookie.getValue();
}
}
UserService us = new UserService();
User user = new User();
user.setUsername(username);
user.setPassword(userpass);
if (us.login(user) != null){
req.getSession().setAttribute("user", user);
}
}
}
chain.doFilter(request, response);br/>}
@Override
public void init(FilterConfig filterConfig) throws ServletException {
// TODO Auto-generated method stubbr/>}
@Override
public void destroy() {
// TODO Auto-generated method stub
}
}

前臺(tái):login.jsp此單選框被選中下次訪問即為自動(dòng)登錄

<div class="checkbox">
<label> <input type="checkbox" name="autoLogin" > 自動(dòng)登錄
</label>   <label> <input
type="checkbox" > 記住用戶名
</label>
</div>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>系統(tǒng)首頁</title>
<style>
#nav{
height: 88px;
padding: 5px 200px;
background-color: aquamarine;
}
#logo{
float: left;
}
#userinfo{
float: right;
height: 50px;
line-height: 80px;
}
#container{
background-color: aqua;
height: 800px;
margin: 2px 200px;
font-size: xx-large;
text-align: center;
}
</style>
</head>
<body>
<div id="nav">
<div id="logo">
<img src="csdn-logo.png" width="180" height="88">
</div>
<div id="userinfo">
<%-- 不推薦使用
<%
String loginUser = (String) request.getAttribute("loginUser");
if (loginUser != null){
out.println(loginUser);
}else {
%>
<a href="login.jsp" rel="external nofollow" rel="external nofollow" rel="external nofollow" >登錄</a><a>/注冊(cè)</a>
<%
}
%>
--%>
<%
String loginUser = (String) session.getAttribute("loginUser");
if (loginUser != null){
out.println(loginUser);
out.println("<a href='logoutServlet'>退出</a>");
}else {
%>
<a href="login.jsp" rel="external nofollow" rel="external nofollow" rel="external nofollow" >登錄</a><a>/注冊(cè)</a>
<%
}
%>
</div>
</div>
<div id="container">

主頁內(nèi)容

<a href="info.jsp" rel="external nofollow" >Python——畫一棵漂亮的櫻花樹(不同種櫻花+玫瑰+圣誕樹喔)</a>
</div>
</body>
</html>
login.jsp
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>登錄</title>
<style>
tr{
height:50px;
}
td{
text-align: center;
}
</style>
</head>
<body>
<%
String msg = (String)request.getAttribute("msg");
%>
<%
if(msg != null){
out.print(msg);
}
%>
<form action="myServlet02" method="get">
<h2 align="center">登錄</h2>
<table width="500" border="1" cellspacing="0" cellpadding="0" align="center">
<tr>
<td>賬號(hào):</td>
<td><input type="text" name="username" /></td>
</tr>
<tr>
<td>密碼:</td>
<td><input type="password" name="password" /></td>
</tr>
<tr>
<td colspan="2"><input type="submit" value="登錄" /></td>
</tr>
</table>
</form>
</body>
</html>

info.jsp

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Title</title>
<style>
#nav{
height: 88px;
padding: 5px 200px;
background-color: aquamarine;
}
#logo{
float: left;
}
#userinfo{
float: right;
height: 50px;
line-height: 80px;
}
#container{
background-color: aqua;
height: 800px;
margin: 2px 200px;
font-size: xx-large;
text-align: center;
}
</style>
</head>
<body>
<div id="nav">
<div id="logo">
<img src="csdn-logo.png" width="180" height="88">
</div>
<div id="userinfo">
<%
String loginUser = (String) session.getAttribute("loginUser");
if (loginUser != null){
out.println(loginUser);
out.println("<a href='logoutServlet'>退出</a>");
}else {
%>
<a href="login.jsp" rel="external nofollow" rel="external nofollow" rel="external nofollow" >登錄</a><a>/注冊(cè)</a>
<%
}
%>
</div>
</div>
<div id="container">
主頁內(nèi)容
</div>
</body>
</html>

Servlet02.java

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import java.io.IOException;br/>@WebServlet("/myServlet02")
public class Servlet02 extends HttpServlet {
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
//修改編碼
request.setCharacterEncoding("utf-8");//請(qǐng)求過來的編碼是亨達(dá)返傭www.kaifx.cn/broker/hantecglobal.htmlutf-8
response.setContentType("text/html;charset=utf-8");//響應(yīng)出去的內(nèi)容,為網(wǎng)頁編碼utf-8
//獲取表單數(shù)據(jù)
String username = request.getParameter("username");
String password = request.getParameter("password");
//驗(yàn)證
if("aaa".equals(username) && "123".equals(password)){
//跳轉(zhuǎn)(請(qǐng)求轉(zhuǎn)發(fā) 請(qǐng)求重定向)
//重定向:兩次請(qǐng)求,不能在request作用域中共享數(shù)據(jù)。
//如果要在兩次請(qǐng)求或多次請(qǐng)求之間,進(jìn)行數(shù)據(jù)共享,需要用session
//使用session步驟
//獲取session
HttpSession session = request.getSession();//如果存在已有的session,則直接返回,否則會(huì)創(chuàng)建一個(gè)新的,返回。
//HttpSession session = request.getSession(true);//同上
//HttpSession session = request.getSession(false);//如果存在已有的session,則直接返回,否則返回null。
//在session的作用域保存數(shù)據(jù),供后續(xù)請(qǐng)求使用
session.setAttribute("loginUser",username);
response.sendRedirect("index.jsp");
/ 多個(gè)頁面不推薦使用請(qǐng)求轉(zhuǎn)發(fā)
request.setAttribute("loginUser",username);
request.getRequestDispatcher("index.jsp").forward(request,response);
/
}else {
//轉(zhuǎn)發(fā):一次請(qǐng)求,可以在request作用域中,共享數(shù)據(jù)
request.setAttribute("msg","<script>alert('登錄失?。?#39;);</script>");
// response.sendRedirect("login.jsp");
request.getRequestDispatcher("login.jsp").forward(request,response);
}
}
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
doPost(request, response);
}
}

LogoutServlet.java

import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import java.io.IOException;br/>@WebServlet("/logoutServlet")
public class LogoutServlet extends HttpServlet {
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
//退出系統(tǒng)
//獲取session
HttpSession session = request.getSession();
//刪除session
session.removeAttribute("loginUser");
//跳轉(zhuǎn)到登錄頁面/首頁
response.sendRedirect("index.jsp");
}
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
doPost(request, response);
}
}

web.xml

<?xml version="1.0" encoding="UTF-8"?>
<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_3_1.xsd"
version="3.1">
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>

看完上述內(nèi)容,你們掌握怎么在Java項(xiàng)目中利用servlet實(shí)現(xiàn)一個(gè)自動(dòng)登錄退出功能的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI