黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

jsp實(shí)現(xiàn)登錄界面

本文實(shí)例為大家分享了jsp實(shí)現(xiàn)登錄界面的具體代碼,供大家參考,具體內(nèi)容如下

一.用戶登錄案例需求:

1.編寫(xiě)login.jsp登錄頁(yè)面
 username & password 兩個(gè)輸入框
2.使用druid數(shù)據(jù)庫(kù)連接池技術(shù),操作mysql,day14數(shù)據(jù)庫(kù)中user表
3.使用jdbctemplate技術(shù)封裝jdbc
4.登錄成功跳轉(zhuǎn)到successservlet展示:登錄成功!用戶名,歡迎您
5.登錄失敗跳轉(zhuǎn)到login.jsp展示:登錄失敗,用戶名或密碼錯(cuò)誤,驗(yàn)證碼錯(cuò)誤

二.分析

三. 開(kāi)發(fā)步驟

1. 創(chuàng)建項(xiàng)目,配置文件,導(dǎo)入jar包

2. 創(chuàng)建數(shù)據(jù)庫(kù)環(huán)境

create database day17;
? ? use day17;
? ? ? ? ? ? create table loginuser( ? -- 創(chuàng)建表
? ? ? ? ? ? ? ? ?id int primary key auto_increment,
? ? ? ? ? ? ? ? username varchar(20) not null,
? ? ? ? ? password varchar(20) not null
);

3.創(chuàng)建前端login.jsp和css頁(yè)面

<%@ page language="java" contenttype="text/html; charset=utf-8"
? ? pageencoding="utf-8"%>
<!doctype html>
<html lang="zh-cn">
? <head>
? ? <meta charset="utf-8"/>
? ? <meta http-equiv="x-ua-compatible" content="ie=edge"/>
? ? <meta name="viewport" content="width=device-width, initial-scale=1"/>
? ? <title>管理員登錄</title>
?
? ? <!-- 1. 導(dǎo)入css的全局樣式 -->
? ? <link href="css/bootstrap.min.css" rel="stylesheet">
? ? <!-- 2. jquery導(dǎo)入,建議使用1.9以上的版本 -->
? ? <script src="js/jquery-2.1.0.min.js"></script>
? ? <!-- 3. 導(dǎo)入bootstrap的js文件 -->
? ? <script src="js/bootstrap.min.js"></script>
? ? <script type="text/javascript">
? ? ? //切換驗(yàn)證碼
? ? ? ?function refreshcode(){
?? ??? ? ?img=document.getelementbyid("vcode"); //獲取驗(yàn)證碼圖片對(duì)象
?? ??? ? ?var time=new date().gettime(); ?//時(shí)間戳
?? ??? ? ?img.src="${pagecontext.request.contextpath }/checkcode?"+time;
?? ?}
? ? </script>
? </head>
? <body>
? ?? ?<div class="container" style="width: 400px;">
? ?? ??? ?<h3 style="text-align: center;">管理員登錄</h3>
? ? ? ? <form action="${pagecontext.request.contextpath}/checklogin" method="post">
?? ? ? ? ?<div class="form-group">
?? ? ? ? ? ?<label for="user">用戶名:</label>
?? ? ? ? ? ?<input type="text" name="username" class="form-control" id="user" placeholder="請(qǐng)輸入用戶名"/>
?? ? ? ? ?</div>
?? ? ? ? ?
?? ? ? ? ?<div class="form-group">
?? ? ? ? ? ?<label for="password">密碼:</label>
?? ? ? ? ? ?<input type="password" name="password" class="form-control" id="password" placeholder="請(qǐng)輸入密碼"/>
?? ? ? ? ?</div>
?? ? ? ? ?
?? ? ? ? ?<div class="form-inline">
?? ? ? ? ? ?<label for="vcode">驗(yàn)證碼:</label>
?? ? ? ? ? ?<input type="text" name="verifycode" class="form-control" id="verifycode" placeholder="請(qǐng)輸入驗(yàn)證碼" style="width: 120px;"/>
?? ? ? ? ? ?<a href="javascript:refreshcode()"><img src="${pagecontext.request.contextpath }/checkcode" title="看不清點(diǎn)擊刷新" id="vcode"/></a>
?? ? ? ? ?</div>
?? ? ? ? ? <div style="color: red;">${log_msg}</div>
?? ? ? ? ?<hr/>
?? ? ? ? ?<div class="form-group" style="text-align: center;">
?? ? ? ? ? ?<input class="btn btn btn-primary" type="submit" value="登錄">
?? ? ? ? ? </div>
?? ? ??? ?</form>
?? ??? ?
?? ??? ?<!-- 出錯(cuò)顯示的信息框 -->
?? ? ??? ?<div class="alert alert-warning alert-dismissible" role="alert">
?? ??? ? ?<button type="button" class="close" data-dismiss="alert" >
?? ??? ? ??? ?&times;</button>
?? ??? ? ? <strong>${log_msg}</strong>
?? ??? ?</div>
? ?? ?</div>
? </body>
</html>

4.在domain包下創(chuàng)建類loginuser

package domain;
?
public class loginuser {
?? ?private int id;
?? ?private string username;
?? ?private string password;
?? ?public int getid() {
?? ??? ?return id;
?? ?}
?? ?public void setid(int id) {
?? ??? ?this.id = id;
?? ?}
?? ?public string ?getusername() {
?? ??? ?return username;
?? ?}
?? ?public void setusername(string username) {
?? ??? ?this.username = username;
?? ?}
?? ?public string getpassword() {
?? ??? ?return password;
?? ?}
?? ?public void setpassword(string password) {
?? ??? ?this.password = password;
?? ?}
?? ?@override
?? ?public string tostring() {
?? ??? ?return "loginuser [id=" + id + ", username=" + username + ", password=" + password + "]";
?? ?}
}

5.寫(xiě)utils包下的工具類jdbcutils ,主要是與mysql數(shù)據(jù)庫(kù)連接,創(chuàng)建數(shù)據(jù)庫(kù)連接池對(duì)象

package cn.itcast.util;
?

?import com.alibaba.druid.pool.druiddatasourcefactory;
?? ??? ??? ?
?import javax.sql.datasource;
?import javax.xml.crypto.data;
import java.io.ioexception;
import java.io.inputstream;
import java.sql.connection;
import java.sql.sqlexception;
import java.util.properties;
?? ??? ??? ?
?? ??? ??? ?/**
?? ??? ??? ? * jdbc工具類 使用durid連接池
?? ??? ??? ? */
?? ??? ??? ?public class jdbcutils {
?? ??? ??? ?
?? ??? ??? ? ? ?private static datasource ds ;
?? ??? ??? ?
?? ??? ??? ? ? ?static {
?? ??? ??? ?
?? ??? ??? ? ? ? ? ?try {
?? ??? ??? ? ? ? ? ? ? ?//1.加載配置文件
?? ??? ??? ? ? ? ? ? ? ?properties pro = new properties();
?? ??? ??? ? ? ? ? ? ? ?//使用classloader加載配置文件,獲取字節(jié)輸入流
?? ??? ??? ? ? ? ? ? ? ?inputstream is = jdbcutils.class.getclassloader().getresourceasstream("druid.properties");
?? ??? ??? ? ? ? ? ? ? ?pro.load(is);
?? ??? ??? ?
?? ??? ??? ? ? ? ? ? ? ?//2.初始化連接池對(duì)象
?? ??? ??? ? ? ? ? ? ? ?ds = druiddatasourcefactory.createdatasource(pro);
?? ??? ??? ?
?? ??? ??? ? ? ? ? ?} catch (ioexception e) {
?? ??? ??? ? ? ? ? ? ? ?e.printstacktrace();
?? ??? ??? ? ? ? ? ?} catch (exception e) {
?? ??? ??? ? ? ? ? ? ? ?e.printstacktrace();
?? ??? ??? ? ? ? ? ?}
?? ??? ??? ? ? ?}
?? ??? ??? ?
?? ??? ??? ? ? ?/**
?? ??? ??? ? ? ? * 獲取連接池對(duì)象
?? ??? ??? ? ? ? */
?? ??? ??? ? ? ?public static datasource getdatasource(){
?? ??? ??? ? ? ? ? ?return ds;
?? ??? ??? ? ? ?}
?? ??? ??? ?
?? ??? ??? ?
?? ??? ??? ? ? ?/**
?? ??? ??? ? ? ? * 獲取連接connection對(duì)象
?? ??? ??? ? ? ? */
?? ??? ??? ? ? ?public static connection getconnection() throws sqlexception {
?? ??? ??? ? ? ? ? ?return ?ds.getconnection();
?? ??? ??? ? ? ?}
?? ??? ??? ?}

6.創(chuàng)建web層的checkcode的servlet,  用來(lái)顯示驗(yàn)證碼的

package web.servlet;
?
import java.io.ioexception;
import java.util.random;
import java.awt.color;
import java.awt.font;
import java.awt.graphics;
import java.awt.image.bufferedimage;
?
import javax.imageio.imageio;
import javax.servlet.servletexception;
import javax.servlet.annotation.webservlet;
import javax.servlet.http.httpservlet;
import javax.servlet.http.httpservletrequest;
import javax.servlet.http.httpservletresponse;
?
@webservlet("/checkcode")
public class checkcode extends httpservlet{
?
?? ?/**
?? ? *?
?? ? */
?? ?private static final long serialversionuid = 1l;
?
?? ?@override
?? ?protected void doget(httpservletrequest req, httpservletresponse resp) throws servletexception, ioexception {
?? ??? ?// todo auto-generated method stub
?? ??? ?this.dopost(req, resp);
?? ?}
?
?? ?@override
?? ?protected void dopost(httpservletrequest req, httpservletresponse resp) throws servletexception, ioexception {
?? ??? ?int imgwidth=100;
?? ??? ?int imgheight=40;
?? ??? ?//1.創(chuàng)建圖片對(duì)象,在內(nèi)存中圖片(驗(yàn)證碼圖片對(duì)象)
?? ??? ?bufferedimage image=new bufferedimage(imgwidth,imgheight,bufferedimage.type_int_rgb); ?//也可以指定讀取image=imageio.read(new file())
?? ??? ?//2.美化圖片
?? ??? ?graphics g=image.getgraphics(); //獲得畫(huà)筆對(duì)象
?? ??? ?
?? ??? ?//設(shè)置畫(huà)筆顏色
?? ??? ?g.setcolor(color.pink);
?? ??? ?//在創(chuàng)建的圖片對(duì)象大小中填充矩形,顏色為上面設(shè)置的顏色,第一,二個(gè)參數(shù)是起始點(diǎn)的x,y,第三,四個(gè)參數(shù)是有多寬,有多高
?? ??? ?g.fillrect(0, 0, imgwidth, imgheight);
?? ??? ?
?? ??? ?//重新設(shè)置畫(huà)筆顏色
?? ??? ?g.setcolor(color.yellow);//畫(huà)框邊緣顏色
?? ??? ?//在image上畫(huà)邊框,第一,二個(gè)參數(shù)是起始點(diǎn)的x,y,第三,四個(gè)參數(shù)是有多寬,有多高,注意:邊框占一個(gè)像素,所以需要寬和高-1才能覆蓋全部
?? ??? ?g.drawrect(0, 0, imgwidth-1, imgheight-1);
?? ??? ?
?? ??? ?//隨機(jī)設(shè)置驗(yàn)證碼的值
?? ??? ?string str="abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz1234567890";
?? ??? ?random random=new random();
?? ??? ?stringbuilder sb=new stringbuilder();
?? ??? ?//隨機(jī)在image中寫(xiě)字符串,第三,四個(gè)參數(shù)是畫(huà)的位置
?? ??? ?for(int i=1;i<5;i++) {
?? ??? ??? ?int index=random.nextint(str.length()); ?//隨機(jī)選取字母字符
?? ??? ??? ?g.setfont(new font("宋體", font.plain, 20)); ?//設(shè)置畫(huà)筆大小
?? ??? ??? ?sb.append(str.charat(index));//將隨機(jī)驗(yàn)證碼置于stringbuilder中
?? ??? ??? ?g.setcolor(color.blue); ?//畫(huà)筆顏色
?? ??? ? ? ?g.drawstring(str.charat(index)+"",imgwidth/5*i ,25); ? ?
?? ??? ?}
?? ??? ?
?? ??? ?//將驗(yàn)證碼存儲(chǔ)與session對(duì)象中,用于loginservlet中的驗(yàn)證碼驗(yàn)證
?? ??? ?string session_code=sb.tostring();
?? ??? ?req.getsession().setattribute("session_code", session_code);
?? ??? ?
?? ??? ?//隨機(jī)畫(huà)干擾線,第一,二個(gè)參數(shù)是起始點(diǎn)的x,y,第三,四個(gè)參數(shù)是最后一個(gè)點(diǎn)的x,y
?? ??? ?int x1=0,y1=0,x2=0,y2=0;
?? ??? ?for(int i=0;i<=8;i++) { ?//畫(huà)8次線條
?? ??? ??? ?x1=random.nextint(imgwidth);
?? ??? ??? ?y1=random.nextint(imgheight);
?? ??? ??? ?x2=random.nextint(imgwidth);
?? ??? ? ? ?y2=random.nextint(imgheight);
?? ??? ? ? ?g.setcolor(color.gray);
?? ??? ? ? ?g.drawline(x1, y1, x2, y2);
?? ??? ?}
?? ??? ?
?? ??? ?//3.圖片顯示在頁(yè)面上
?? ??? ?imageio.write(image, "jpg", resp.getoutputstream()); ?//將圖片寫(xiě)入指定文件(第三個(gè)參數(shù)是指定的位置fileoutpotstream(new file(""))
?? ?}
?? ?
?
}

7.創(chuàng)建web層的checklogin的servlet,用來(lái)響應(yīng)用戶登錄的請(qǐng)求。主要是進(jìn)行前端參數(shù)數(shù)據(jù)和userdao進(jìn)行交互

代碼:

package web.servlet;
?
import java.io.ioexception;
import java.lang.reflect.invocationtargetexception;
import java.util.map;
?
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 org.apache.commons.beanutils.beanutils;
?
import com.mchange.v2.codegen.bean.beangenutils;
?
import dao.userdaoimpl;
import domain.loginuser;
?
@webservlet("/checklogin")
public class checklogin extends httpservlet{
?
?? ?/**
?? ? *?
?? ? */
?? ?private static final long serialversionuid = 1l;
?
?? ?@override
?? ?protected void doget(httpservletrequest req, httpservletresponse resp) throws servletexception, ioexception {
?? ??? ?// todo auto-generated method stub
?? ??? ?this.dopost(req, resp);
?? ?}
?
?? ?@override
?? ?protected void dopost(httpservletrequest req, httpservletresponse resp) throws servletexception, ioexception {
?? ??? ?//1.設(shè)置編碼
?? ??? ?req.setcharacterencoding("utf-8");
?? ??? ?//2.獲取用戶的請(qǐng)求
?? ??? ? ? loginuser loginuser=new loginuser();
?? ??? ? ?map<string, string[]> pmap=req.getparametermap();
?? ??? ?//3.使用beanutil封裝對(duì)象
?? ??? ? ?try {
?? ??? ??? ?beanutils.populate(loginuser, pmap);
?? ??? ?} catch (illegalaccessexception | invocationtargetexception e) {
?? ??? ??? ?// todo auto-generated catch block
?? ??? ??? ?e.printstacktrace();
?? ??? ?}
?? ??? ??
?? ??? ? ?//4.現(xiàn)獲取前端填寫(xiě)的驗(yàn)證碼,比較驗(yàn)證碼
?? ??? ? ? ?system.out.println(loginuser);
?? ??? ? ? ?string exc=req.getparameter("verifycode");//獲取前端用戶填寫(xiě)的驗(yàn)證碼
?? ??? ? ? ?httpsession htp=req.getsession(); ?//獲取session
?? ??? ? ? ?string excode=(string) htp.getattribute("session_code"); ?//獲取后端checkcode隨機(jī)驗(yàn)證碼
?? ??? ? ? ?//為防止驗(yàn)證碼重復(fù)使用,session中的session_code一旦獲得,就必須刪除
?? ??? ? ? ?htp.removeattribute("session_code");
?? ??? ? ? ?if(excode!=null && excode.equalsignorecase(exc)) {
?? ??? ? ? ??? ?//忽略字母大小寫(xiě),比較驗(yàn)證碼
?? ??? ? ? ? ? ?//如果驗(yàn)證碼正確,再比較用戶的用戶名和密碼
?? ??? ? ? ?//驗(yàn)證碼正確
?? ??? ? ? ?//5.創(chuàng)建userdao對(duì)象
?? ??? ? ? ??? ? userdaoimpl userdaoimpl=new userdaoimpl(); ?//調(diào)用與數(shù)據(jù)庫(kù)的函數(shù)
?? ??? ??? ??? ? loginuser lu=userdaoimpl.checkloginuser(loginuser);
?? ??? ??? ? ? ?if(lu!=null) {
?? ??? ??? ? ? ??? ? ?//如果登錄成功
?? ??? ??? ? ? ??? ? ?//保存數(shù)據(jù),用戶信息
?? ??? ??? ? ? ??? ? ?htp.setattribute("user", lu); ?//在session中保存用戶的信息
?? ??? ??? ? ? ??? ? ?htp.setattribute("username", lu.getusername());//在session中存儲(chǔ)用戶名
?? ??? ??? ? ? ??? ? ?//重定向到success.jsp頁(yè)面
?? ??? ??? ? ? ??? ? ?resp.sendredirect(req.getcontextpath()+"/index.jsp");
?? ??? ??? ? ? ? ?}
?? ??? ??? ? ? ? ?else {//用戶名或密碼不正確
?? ??? ??? ? ? ??? ?req.setattribute("log_msg", "用戶名或密碼錯(cuò)誤"); ?//存儲(chǔ)錯(cuò)誤信息,用request域存儲(chǔ)?
?? ??? ??? ? ? ??? ?//請(qǐng)求轉(zhuǎn)發(fā),重新回到登錄頁(yè)面
?? ??? ??? ??? ??? ?req.getrequestdispatcher("/login.jsp").forward(req, resp);
?? ??? ??? ??? ?}?? ?
?? ??? ? ? ?}else {//驗(yàn)證碼不正確
?? ??? ? ? ??? ?req.setattribute("log_msg", "驗(yàn)證碼錯(cuò)誤"); ?//存儲(chǔ)錯(cuò)誤信息,用request域存儲(chǔ)
?? ??? ? ? ??? ?req.getrequestdispatcher("/login.jsp").forward(req, resp); ?//請(qǐng)求轉(zhuǎn)發(fā),重新回到登錄頁(yè)面
?? ??? ??? ?}
?? ??? ? ? ?
?? ??? ? ?
?? ??? ? ?
?? ?}
?? ?
?
}

8.在dao層的,操作數(shù)據(jù)庫(kù),查詢數(shù)據(jù)庫(kù)
操作數(shù)據(jù)庫(kù)的userdao接口:

package dao;
?
import java.util.list;
?
import domain.user;
?
public interface userdao {
? ? ?public list<user> findall(); ?//抽象方法
? ? ?public loginuser checkloginuser( loginuser loginuser);
}

操作數(shù)據(jù)庫(kù)的userdaoimpl實(shí)現(xiàn)類:

package dao;
?
import java.util.list;
?
import javax.xml.transform.templates;
?
import org.springframework.jdbc.core.beanpropertyrowmapper;
import org.springframework.jdbc.core.jdbctemplate;
?
import domain.loginuser;
import domain.user;
import utils.jdbcutils;
?
public class userdaoimpl implements userdao{
? ? jdbctemplate jdbctemplate =new jdbctemplate(jdbcutils.getdatasource());
?? ?public list<user> findall() {
?? ??? ?// 操作數(shù)據(jù)庫(kù),查詢
?? ??? ?string sql="select * from user";
?? ??? ?list<user> users=jdbctemplate.query(sql,new beanpropertyrowmapper(user.class));
?? ??? ?return users;
?? ?}
?? ?public loginuser checkloginuser( loginuser loginuser) {
?? ??? ?//查詢登錄用戶信息
?? ??? ?string sqlstring="select* from loginuser where username=? and password=?";
?? ??? ?//system.out.println("111"+loginuser);
?? ??? ?try {
?? ??? ??? ?loginuser lu=(loginuser) jdbctemplate.queryforobject(sqlstring, new beanpropertyrowmapper<loginuser>(loginuser.class)
?? ??? ??? ??? ??? ?,loginuser.getusername(),loginuser.getpassword());
?? ??? ??? ?return lu;
?? ??? ?} catch (exception e) {
?? ??? ??? ?// todo: handle exception
?? ??? ??? ?e.printstacktrace();
?? ??? ??? ?return null;
?? ??? ?}?? ?
?? ?}
}

9.編寫(xiě)success.jsp,在這里指的是index.jsp,對(duì)應(yīng)在checklogin.java中

<%@ page language="java" contenttype="text/html; charset=utf-8"
? ? pageencoding="utf-8"%>
<!doctype html>
<html lang="zh-cn">
? <head>
? ? <meta charset="utf-8"/>
? ? <meta http-equiv="x-ua-compatible" content="ie=edge"/>
? ? <meta name="viewport" content="width=device-width, initial-scale=1"/>
? ? <title>首頁(yè)</title>
?
? ? <!-- 1. 導(dǎo)入css的全局樣式 -->
? ? <link href="css/bootstrap.min.css" rel="stylesheet">
? ? <!-- 2. jquery導(dǎo)入,建議使用1.9以上的版本 -->
? ? <script src="js/jquery-2.1.0.min.js"></script>
? ? <!-- 3. 導(dǎo)入bootstrap的js文件 -->
? ? <script src="js/bootstrap.min.js"></script>
? ? <script type="text/javascript">
? ? </script>
? </head>
? <body>
? <div align="center">
? ?? ?<a
?? ? ?href="${pagecontext.request.contextpath }/userlistservlet" style="text-decoration:none;font-size:33px">查詢所有用戶信息
?? ?</a>
? </div>
? </body>
</html>

四.尾聲

效果圖:

其他:

login.jsp中form表單的action路徑的寫(xiě)法
            * 虛擬目錄+servlet的資源路徑

beanutils工具類,簡(jiǎn)化數(shù)據(jù)封裝
            * 用于封裝javabean的

1. javabean:標(biāo)準(zhǔn)的java類

1). 要求:

1. 類必須被public修飾
2. 必須提供空參的構(gòu)造器
3. 成員變量必須使用private修飾
4. 提供公共setter和getter方法

2). 功能:封裝數(shù)據(jù)

最后:用戶登錄的模塊功能全部結(jié)束!

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持碩編程。

相關(guān)文章