欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

使用Java servlet實現(xiàn)自動登錄退出功能

 更新時間:2019年11月05日 10:09:05   作者:專注地一哥  
這篇文章主要介紹了使用Java servlet實現(xiàn)自動登錄退出功能,,本文通過實例代碼給大家介紹的非常詳細,具有一定的參考借鑒價值,需要的朋友可以參考下

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實現(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", "用戶或密碼錯誤!");
request.getRequestDispatcher("/login.jsp").forward(request, response);
}
}

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

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
}
}

前臺:login.jsp此單選框被選中下次訪問即為自動登錄

<div class="checkbox">
<label> <input type="checkbox" name="autoLogin" > 自動登錄
</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>/注冊</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>/注冊</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">
<h1 align="center">登錄</h1>
<table width="500" border="1" cellspacing="0" cellpadding="0" align="center">
<tr>
<td>賬號:</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>/注冊</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");//請求過來的編碼是亨達返傭www.kaifx.cn/broker/hantecglobal.htmlutf-8
response.setContentType("text/html;charset=utf-8");//響應出去的內(nèi)容,為網(wǎng)頁編碼utf-8
//獲取表單數(shù)據(jù)
String username = request.getParameter("username");
String password = request.getParameter("password");
//驗證
if("aaa".equals(username) && "123".equals(password)){
//跳轉(zhuǎn)(請求轉(zhuǎn)發(fā) 請求重定向)
//重定向:兩次請求,不能在request作用域中共享數(shù)據(jù)。
//如果要在兩次請求或多次請求之間,進行數(shù)據(jù)共享,需要用session
//使用session步驟
//獲取session
HttpSession session = request.getSession();//如果存在已有的session,則直接返回,否則會創(chuàng)建一個新的,返回。
//HttpSession session = request.getSession(true);//同上
//HttpSession session = request.getSession(false);//如果存在已有的session,則直接返回,否則返回null。
//在session的作用域保存數(shù)據(jù),供后續(xù)請求使用
session.setAttribute("loginUser",username);
response.sendRedirect("index.jsp");
/ 多個頁面不推薦使用請求轉(zhuǎn)發(fā)
request.setAttribute("loginUser",username);
request.getRequestDispatcher("index.jsp").forward(request,response);
/
}else {
//轉(zhuǎn)發(fā):一次請求,可以在request作用域中,共享數(shù)據(jù)
request.setAttribute("msg","<script>alert('登錄失??!');</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>

總結(jié)

以上所述是小編給大家介紹的使用Java servlet實現(xiàn)自動登錄退出功能,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對腳本之家網(wǎng)站的支持!
如果你覺得本文對你有幫助,歡迎轉(zhuǎn)載,煩請注明出處,謝謝!

相關(guān)文章

  • idea2023.3安裝及配置詳細圖文教程

    idea2023.3安裝及配置詳細圖文教程

    IDEA全稱IntelliJ?IDEA,是Java語言對的集成開發(fā)環(huán)境,IDEA在業(yè)界被認為是公認最好的Java開發(fā)工具,這篇文章主要給大家介紹了關(guān)于idea2023.3安裝及配置的相關(guān)資料,需要的朋友可以參考下
    2023-11-11
  • java 文件的操作Path、Paths、Files詳解

    java 文件的操作Path、Paths、Files詳解

    Java NIO(New I/O)是Java 7中引入的一項重要特性,旨在提供一種更加靈活和高效的文件處理方式,NIO.2主要通過Path、Paths和Files三個核心組件來實現(xiàn)對文件和目錄的操作,本文給大家介紹java 文件的操作Path、Paths、Files的相關(guān)知識,感興趣的朋友一起看看吧
    2024-10-10
  • 使用Java模擬鼠標和鍵盤的詳細操作步驟

    使用Java模擬鼠標和鍵盤的詳細操作步驟

    這篇文章主要介紹了使用Java模擬鼠標和鍵盤的詳細操作步驟,要運行上面提供的Java程序,您需要遵循幾個步驟來設(shè)置Java環(huán)境、編寫程序代碼,并執(zhí)行該程序,文中有相關(guān)的代碼示例,需要的朋友可以參考下
    2024-05-05
  • HashMap的底層實現(xiàn)原理分析

    HashMap的底層實現(xiàn)原理分析

    本文主要介紹了HashMap的底層實現(xiàn)結(jié)構(gòu),包括JDK1.7和1.8版本的區(qū)別,JDK1.7使用數(shù)組加鏈表實現(xiàn),而JDK1.8引入了紅黑樹優(yōu)化,文章詳細解釋了HashMap如何確定哈希桶數(shù)組索引位置、put方法的執(zhí)行過程以及擴容原理
    2025-01-01
  • Java基礎(chǔ)強化訓練輸入錯誤即結(jié)束進程

    Java基礎(chǔ)強化訓練輸入錯誤即結(jié)束進程

    本文主要介紹了Java編程的基礎(chǔ)知識強化應用,文中實例涉及到了許多基礎(chǔ)知識,new對象,控制臺輸入,if語句等。很實用,需要的朋友可以參考下
    2017-09-09
  • springboot不掃描@repository的問題及解決

    springboot不掃描@repository的問題及解決

    這篇文章主要介紹了springboot不掃描@repository的問題及解決,具有很好的參考價值,希望對大家有所幫助,如有錯誤或未考慮完全的地方,望不吝賜教
    2024-05-05
  • SpringBoot實現(xiàn)國際化的操作步驟

    SpringBoot實現(xiàn)國際化的操作步驟

    國際化(Internationalization) 是指為了適應不同語言、文化和地區(qū)的用戶,使軟件能夠方便地進行本地化修改的過程,本文介紹了SpringBoot 國際化功能的簡單使用,感興趣的朋友可以參考下
    2024-02-02
  • Springboot?hibernate-validator?6.x快速校驗示例代碼

    Springboot?hibernate-validator?6.x快速校驗示例代碼

    這篇文章主要介紹了Springboot?hibernate-validator?6.x校驗,本文以6.2.1.Final版本為例解決了log4j版本的漏洞問題,通過實例代碼給大家介紹的非常詳細,需要的朋友可以參考下
    2021-12-12
  • Java異常 Exception類及其子類(實例講解)

    Java異常 Exception類及其子類(實例講解)

    下面小編就為大家?guī)硪黄狫ava異常 Exception類及其子類(實例講解)。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2017-11-11
  • 淺談 JDBC 元數(shù)據(jù)

    淺談 JDBC 元數(shù)據(jù)

    這篇文章主要介紹了JDBC元數(shù)據(jù)的相關(guān)內(nèi)容,涉及一些獲取數(shù)據(jù)源各種信息的方法,具有一定參考價值,需要的朋友可以了解下。
    2017-09-09

最新評論