版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡介
1、基于MVC模式的用戶登錄驗(yàn)證系統(tǒng)一、 項(xiàng)目文件結(jié)構(gòu):二、View視圖部分Login.jsp 用戶登錄 用戶名: 密 碼: LoginCL.jsp Wel.jsp 登陸成功!恭喜你! 重新登陸 顯示所有用戶列表 UserList.jsp 用戶信息列表 用戶ID用戶名用戶密碼用戶級(jí)別 % for(int i=0;i 三、Model模型部分UserBean.javapackage com.li.model;public class UserBean private int userId;private String username;private String passwd;
2、private int grade;public int getUserId() return userId;public void setUserId(int userId) this.userId = userId;public String getUsername() return username;public void setUsername(String username) this.username = username;public String getPasswd() return passwd;public void setPasswd(String passwd) thi
3、s.passwd = passwd;public int getGrade() return grade;public void setGrade(int grade) this.grade = grade;UserBeanDao.javapackage com.li.model;import java.sql.*;import java.util.*;public class UserBeanDao private Statement sm = null;private ResultSet rs = null;private Connection ct = null;private int
4、pageCount = 0;private int rowCount = 0;private int pageSize = 3;public void close() / 關(guān)閉各種打開的資源try if (rs != null) rs.close();rs = null;if (sm != null) sm.close();sm = null;if (ct != null) ct.close();ct = null; catch (Exception e) e.printStackTrace();/ 打印異常,以便修改public ArrayList getUserList() ArrayLi
5、st al = new ArrayList();try ct = new ConnDB().getConn();sm = ct.createStatement();rs = sm.executeQuery(select * from users);while (rs.next() UserBean ub = new UserBean();ub.setUserId(rs.getInt(1);ub.setUsername(rs.getString(2);ub.setPasswd(rs.getString(3);ub.setGrade(rs.getInt(4);al.add(ub); / 將al放到
6、arrayList中 catch (Exception e) e.printStackTrace(); finally this.close();return al;public boolean checkUser(String u, String p) boolean b = false;try ct = new ConnDB().getConn();/ 獲取ConnDB中的方法,操作數(shù)據(jù)庫sm = ct.createStatement();rs = sm.executeQuery(select passwd from users where username=+ u + );if (rs.
7、next() if (rs.getString(1).equals(p) b = true; catch (Exception e) e.printStackTrace(); finally / 關(guān)閉各種打開的資源,釋放內(nèi)存this.close();return b;ConnDB.javapackage com.li.model;import java.sql.*;public class ConnDB private Connection ct=null;public Connection getConn()tryClass.forName(sun.jdbc.odbc.JdbcOdbcDri
8、ver); ct=DriverManager.getConnection(jdbc:odbc:users);catch(Exception e)e.printStackTrace(); return ct;四、Controller部分LoginCheckServlet.javapackage com.li.controller;import java.io.IOException;import java.io.PrintWriter;import java.util.ArrayList;import javax.servlet.ServletException;import javax.ser
9、vlet.http.HttpServlet;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;import com.li.model.*;public class LoginCheckServlet extends HttpServlet public void doGet(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException /得
10、到用戶名和密碼 String u=request.getParameter(username); String p=request.getParameter(passwd);/使用模型,完成驗(yàn)證 UserBeanDao ubdao=new UserBeanDao(); request.setAttribute(uname, u); if(ubdao.checkUser(u, p) /在跳轉(zhuǎn)到wel.jsp request.getRequestDispatcher(wel.jsp).forward(request,response); else request.getRequestDispatc
11、her(lonin.jsp).forward(request,response); public void doPost(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException /合二為一this.doGet(request,response);UserListServlet.javapackage com.li.controller;import java.io.IOException;import java.io.PrintWriter;import java
12、.util.ArrayList;import javax.servlet.ServletException;import javax.servlet.http.HttpServlet;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;import com.li.model.*;public class UsersListServlet extends HttpServlet /* * The doGet method of the servlet. * * Thi
13、s method is called when a form has its tag value method equals to get. * * param request the request send by the client to the server * param response the response send by the server to the client * throws ServletException if an error occurred * throws IOException if an error occurred */public void
14、doGet(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException tryUserBeanDao ubdao=new UserBeanDao();/在跳轉(zhuǎn)到wel.jsp ArrayList al=ubdao.getUserList(); request.setAttribute(result, al);/重新跳轉(zhuǎn)wel request.getRequestDispatcher(UserList.jsp).forward(request,response); catch(Exce
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 2024年肉雞養(yǎng)殖場(chǎng)租賃及品牌授權(quán)運(yùn)營管理合同3篇
- 2025年度餐廳員工福利保障與保險(xiǎn)合同3篇
- 《酒店消防》課件
- 肥料農(nóng)藥知識(shí)培訓(xùn)課件
- 《安全標(biāo)準(zhǔn)化》課件
- 專業(yè)合作伙伴快運(yùn)服務(wù)協(xié)議2024版版B版
- 鄭州美術(shù)學(xué)院《醫(yī)用數(shù)理統(tǒng)計(jì)》2023-2024學(xué)年第一學(xué)期期末試卷
- 浙江交通職業(yè)技術(shù)學(xué)院《專業(yè)導(dǎo)論(環(huán)境設(shè)計(jì))》2023-2024學(xué)年第一學(xué)期期末試卷
- 2024年高效節(jié)能供水井工程承包協(xié)議版
- 互聯(lián)網(wǎng)行業(yè)產(chǎn)品經(jīng)理職業(yè)培訓(xùn)感悟
- 初中寒假安全教育主題班會(huì)
- 2025年觀看反腐倡廉警示教育片心得體會(huì)范文
- 2025年中國煙草總公司湖北省公司校園招聘227人高頻重點(diǎn)提升(共500題)附帶答案詳解
- 居家辦公培訓(xùn)課件
- 部隊(duì)行車安全課件
- 2025康復(fù)科年度工作計(jì)劃
- 拼圖行業(yè)未來五年前景展望
- 廣西玉林市(2024年-2025年小學(xué)六年級(jí)語文)統(tǒng)編版質(zhì)量測(cè)試(上學(xué)期)試卷及答案
- 醫(yī)院醫(yī)保科工作總結(jié)
- 2024-2025學(xué)年譯林版八年級(jí)英語上學(xué)期重點(diǎn)詞匯短語句子歸納【考點(diǎn)清單】
- 廣東省六校聯(lián)考2024-2025學(xué)年高二上學(xué)期12月月考英語試題
評(píng)論
0/150
提交評(píng)論