這一篇博客將詳細(xì)介紹一個(gè)基于Servlet的問答網(wǎng)站的實(shí)現(xiàn),有詳細(xì)的代碼。
成都創(chuàng)新互聯(lián)公司成立與2013年,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項(xiàng)目網(wǎng)站設(shè)計(jì)、網(wǎng)站制作網(wǎng)站策劃,項(xiàng)目實(shí)施與項(xiàng)目整合能力。我們以讓每一個(gè)夢(mèng)想脫穎而出為使命,1280元中衛(wèi)做網(wǎng)站,已為上家服務(wù),為中衛(wèi)各地企業(yè)和個(gè)人服務(wù),聯(lián)系電話:028-86922220
可能篇幅較長(zhǎng),以代碼為主,有興趣的童鞋看完可以嘗試動(dòng)手搭建一個(gè)屬于自己的問答社區(qū)。
工具:Eclipse,數(shù)據(jù)庫(kù)用到了MySQL,這次項(xiàng)目中未使用jsp,全部以Servlet注解的方式連接HTML和Servlet,JDK最好使用1.8,tomcat使用8.0。(注解方式為JDK1.5后的特性,最低要求1.5+,本項(xiàng)目使用JDK1.8)。
在這篇博客中可以學(xué)習(xí)到:
1,Servlet中關(guān)于注解的使用,本項(xiàng)目沒有使用到傳統(tǒng)的Servlet配置web.xml,全部使用注解的形式。
2,了解Font Awesome這一矢量圖標(biāo)庫(kù)的使用,他基本提供了項(xiàng)目中所要使用到的所有圖標(biāo),方便,快捷。
3,了解simditor這一富文本編輯器的使用,網(wǎng)站中直接嵌入富文本編輯器,再也不用為讀取出來的文字格式不對(duì)發(fā)愁了。
4,關(guān)于項(xiàng)目中如何加入驗(yàn)證碼,數(shù)據(jù)庫(kù)查詢之前先進(jìn)行驗(yàn)證碼驗(yàn)證。
5,關(guān)于MVC框架顯示層——Velocity技術(shù)的使用。
先看一下大體項(xiàng)目圖(由于主要做后臺(tái),前臺(tái)可能略丑,大家可以自行找網(wǎng)站模板)
登錄界面:
注冊(cè)界面:
首頁(yè),展示了大家的提問:
解答界面,點(diǎn)擊別人的提問后進(jìn)入解答界面,使用了富文本編輯器。
我的解答界面,展示了我回答的歷史:
我的提問界面,展示了我提問的所有問題:
提問界面:進(jìn)入網(wǎng)站點(diǎn)擊我要提問,加入當(dāng)前頁(yè)編輯問題:
下面介紹主要代碼(代碼中加入了詳細(xì)注釋,所以不再做說明)
主頁(yè)列表Servlet:
@WebServlet( "/list.do" ) public class ListServlet extends HttpServlet { private static final long serialVersionUID = 810339694607399128L; @Override protected void service( HttpServletRequest request , HttpServletResponse response ) throws ServletException, IOException { String question=request.getParameter("quest"); System.out.println(question); if(StringHelper.notEmpty(question)){ final String SQL = "SELECT id , title ,content, publish_time , publish_ip , user_id FROM t_topic where title =? " ; ResultSet rs = JdbcHelper.query( SQL,question ); // 創(chuàng)建一個(gè) List 對(duì)象,用來保存一批 Topic 對(duì)象 final Listtopics = new ArrayList<>(); try { // 每循環(huán)一次,光標(biāo)下移一行,如果該行有數(shù)據(jù)返回 true while( rs.next() ){ Topic t = new Topic(); // 創(chuàng)建對(duì)象 t.setId( rs.getInt( 1 ) ); // 將 結(jié)果集 中的 該行數(shù)據(jù) 封裝到 t 對(duì)象的 id 屬性中 t.setTitle( rs.getString( 2 ) ); t.setContent(rs.getString(3)); t.setPublishTime( rs.getTimestamp( 4 )); t.setPublishIp( rs.getString( 5 ) ); User u = new User(); // 創(chuàng)建 一個(gè) User 對(duì)象 u.setId( rs.getInt( 6 ) ); // 將 t_topic 表中的 user_id 放入到 User 對(duì)象的 id 屬性中 t.setUser( u ); // 將 User 對(duì)象 設(shè)置到 Topic 對(duì)象上 /** 將 本次循環(huán) 創(chuàng)建的對(duì)象(已經(jīng)封裝數(shù)據(jù)) 添加到 List 集合中 */ topics.add( t ); } } catch (SQLException e) { e.printStackTrace(); } JdbcHelper.release( rs ); // 關(guān)閉 結(jié)果集,釋放相關(guān)的資源 /**** 為每個(gè)問題尋找提問者 ***********************************/ //for( int i = 0 ; i < topics.size() ; i++ ){ for( int i = 0 , len = topics.size() ; i < len ; i++ ){ Topic t = topics.get( i ) ; // 獲得 題目 User u = t.getUser(); // 獲得當(dāng)前題目的User對(duì)象 ( 該對(duì)象中只有 id 沒有其它數(shù)據(jù) ) // 根據(jù) 用戶對(duì)象的 id 來查詢 用戶的信息 String querySQL = "SELECT id , username , password FROM t_user WHERE id = ? " ; ResultSet userRs = JdbcHelper.query( querySQL , u.getId() ); try { if( userRs.next() ) { // 如果查詢到用戶信息 // 注意,這里應(yīng)該使用 userRs u.setUsername( userRs.getString( 2 ) ); // 將 username 列的值設(shè)置到 用戶對(duì)象的 username 屬性中 u.setPassword( userRs.getString( 3 )); // 將 password 列的值設(shè)置到 用戶對(duì)象的 password 屬性中 } } catch (SQLException e) { e.printStackTrace(); } JdbcHelper.release( userRs ); // 關(guān)閉 結(jié)果集,釋放相關(guān)的資源 } ServletContext application = request.getServletContext(); /** 將這些數(shù)據(jù)保存到 application **/ application.setAttribute( "topics" , topics ); System.out.println( "問題列表: " + topics ); // 去 list.html 頁(yè)面 response.sendRedirect( request.getContextPath() + "/list.html"); }else{ /**** 查詢數(shù)據(jù)庫(kù)中的所有問題 ***********************************/ final String SQL = "SELECT id , title ,content ,publish_time , publish_ip , user_id FROM t_topic ORDER BY publish_time DESC" ; ResultSet rs = JdbcHelper.query( SQL ); // 創(chuàng)建一個(gè) List 對(duì)象,用來保存一批 Topic 對(duì)象 final List topics = new ArrayList<>(); try { // 每循環(huán)一次,光標(biāo)下移一行,如果該行有數(shù)據(jù)返回 true while( rs.next() ){ Topic t = new Topic(); // 創(chuàng)建對(duì)象 t.setId( rs.getInt( 1 ) ); // 將 結(jié)果集 中的 該行數(shù)據(jù) 封裝到 t 對(duì)象的 id 屬性中 t.setTitle( rs.getString( 2 ) ); t.setContent(rs.getString(3)); t.setPublishTime( rs.getTimestamp( 4 )); t.setPublishIp( rs.getString( 5 ) ); User u = new User(); // 創(chuàng)建 一個(gè) User 對(duì)象 u.setId( rs.getInt( 6) ); // 將 t_topic 表中的 user_id 放入到 User 對(duì)象的 id 屬性中 t.setUser( u ); // 將 User 對(duì)象 設(shè)置到 Topic 對(duì)象上 /** 將 本次循環(huán) 創(chuàng)建的對(duì)象(已經(jīng)封裝數(shù)據(jù)) 添加到 List 集合中 */ topics.add( t ); } } catch (SQLException e) { e.printStackTrace(); } JdbcHelper.release( rs ); // 關(guān)閉 結(jié)果集,釋放相關(guān)的資源 /**** 為每個(gè)問題尋找提問者 ***********************************/ //for( int i = 0 ; i < topics.size() ; i++ ){ for( int i = 0 , len = topics.size() ; i < len ; i++ ){ Topic t = topics.get( i ) ; // 獲得 題目 User u = t.getUser(); // 獲得當(dāng)前題目的User對(duì)象 ( 該對(duì)象中只有 id 沒有其它數(shù)據(jù) ) // 根據(jù) 用戶對(duì)象的 id 來查詢 用戶的信息 String querySQL = "SELECT id , username , password FROM t_user WHERE id = ? " ; ResultSet userRs = JdbcHelper.query( querySQL , u.getId() ); try { if( userRs.next() ) { // 如果查詢到用戶信息 // 注意,這里應(yīng)該使用 userRs u.setUsername( userRs.getString( 2 ) ); // 將 username 列的值設(shè)置到 用戶對(duì)象的 username 屬性中 u.setPassword( userRs.getString( 3 )); // 將 password 列的值設(shè)置到 用戶對(duì)象的 password 屬性中 } } catch (SQLException e) { e.printStackTrace(); } JdbcHelper.release( userRs ); // 關(guān)閉 結(jié)果集,釋放相關(guān)的資源 } ServletContext application = request.getServletContext(); /** 將這些數(shù)據(jù)保存到 application **/ application.setAttribute( "topics" , topics ); System.out.println( "問題列表: " + topics ); // 去 list.html 頁(yè)面 response.sendRedirect( request.getContextPath() + "/list.html"); } } }
主頁(yè)列表顯示界面代碼:
首頁(yè) ## 登錄狀態(tài)欄 開始## 在 $ 之后 表達(dá)式之前使用 ! 表示 安靜模式 ( 靜默模式 ) 歡迎$!user.username來到愛問社區(qū) #if( $user ) 提問 | 我的提問 | 注銷 #else 登錄 | 注冊(cè) #end## 登錄狀態(tài)欄 結(jié)束 ## 標(biāo)志區(qū)域 ## 列表區(qū)域## 列表區(qū)域結(jié)束序號(hào) 標(biāo)題 提問時(shí)間 提問者 #if( $user ) 解答問題 #end## 問題列表開始 ## 每循環(huán)一次從 $topics 集合中取出一個(gè) Topic 對(duì)象 放到 $topic 中 #foreach( $topic in $topics ) #end ## 問題列表結(jié)束© 2017 愛問社區(qū)版權(quán)所有
提問前臺(tái)界面代碼:
#else提問 ## 登錄狀態(tài)欄 開始 ## 登錄狀態(tài)欄 結(jié)束 #if( $user )
回答Servlet處理代碼:
@WebServlet("/answer.do") public class AnswerServlet extends HttpServlet { private static final long serialVersionUID = 8578962149437664830L; @Override protected void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // 從 請(qǐng)求中獲得請(qǐng)求參數(shù)的值 String id = request.getParameter("id"); if (StringHelper.notEmpty(id)) { try { int topicId = Integer.parseInt(id); // 將字符串按照 十進(jìn)制 解析問 int 類型數(shù)值 // 根據(jù)得到的 問題的 主鍵 查詢數(shù)據(jù)庫(kù),得到 詳細(xì)信息 final String SQL = "SELECT id , title , content , publish_time , publish_ip , user_id FROM t_topic WHERE id = ? "; ResultSet rs = JdbcHelper.query(SQL, topicId); Topic t = null; int userId = -1; if (rs.next()) { // 當(dāng) 根據(jù) 問題的主鍵 獲取到 問題信息時(shí) t = new Topic(); // 創(chuàng)建 Topic 對(duì)象 t.setId(rs.getInt(1)); // 將 結(jié)果集 中的 該行數(shù)據(jù) 封裝到 t 對(duì)象的 id 屬性中 t.setTitle(rs.getString(2)); t.setContent(rs.getString(3)); t.setPublishTime(rs.getTimestamp(4)); t.setPublishIp(rs.getString(5)); userId = rs.getInt(6); } JdbcHelper.release(rs); // 關(guān)閉結(jié)果集 // 獲得提問者 final String getUserSQL = "SELECT id , username , password FROM t_user WHERE id = ? "; rs = JdbcHelper.query(getUserSQL, userId); if (userId != -1 && rs.next()) { User u = new User(); // 封裝數(shù)據(jù) u.setId(rs.getInt(1)); u.setUsername(rs.getString(2)); u.setPassword(rs.getString(3)); // 將獲取到的用戶數(shù)據(jù)設(shè)置到 Topic 對(duì)象的 user 屬性中 t.setUser(u); } HttpSession session = request.getSession(); session.setAttribute("topic", t); response.sendRedirect(request.getContextPath() + "/answer.html"); return; // 讓方法立即結(jié)束 } catch (NumberFormatException e) { e.printStackTrace(); // response.sendRedirect( request.getContextPath() + "/list.do" ); } catch (SQLException e) { e.printStackTrace(); // response.sendRedirect( request.getContextPath() + "/list.do" ); } } else { // response.sendRedirect( request.getContextPath() + "/list.do" ); } response.sendRedirect(request.getContextPath() + "/list.do"); } }
回答前臺(tái)代碼:
$scope.remove( $session , 'topic' );解答: $topic.title ## 登錄狀態(tài)欄 開始## 在 $ 之后 表達(dá)式之前使用 ! 表示 安靜模式 ( 靜默模式 ) 歡迎$!user.username來到愛問社區(qū) #if( $user ) 提問 | 我的提問 | 注銷 #else 登錄 | 注冊(cè) #end## 登錄狀態(tài)欄 結(jié)束 ## 標(biāo)志區(qū)域$topic.title
$topic.content提問時(shí)間: $topic.publishTime / 提問者: $topic.user.username
以下是使用simditor的方法,需要引入simditor中的css和js樣式。simditor下載地址
解答問題Servlet處理,這里需要獲取提問者,提問問題以及該問題的已有答案,已有答案回答者。
@WebServlet("/detail.do") public class DetailServlet extends HttpServlet { private static final long serialVersionUID = -3202278077673657729L; @Override protected void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // 從 請(qǐng)求中獲得請(qǐng)求參數(shù)的值 String id = request.getParameter("id"); if (StringHelper.notEmpty(id)) { try { int topicId = Integer.parseInt(id); // 將字符串按照 十進(jìn)制 解析問 int 類型數(shù)值 // 根據(jù)得到的 問題的 主鍵 查詢數(shù)據(jù)庫(kù),得到 詳細(xì)信息 final String SQL = "SELECT id , title , content , publish_time , publish_ip , user_id FROM t_topic WHERE id = ? "; ResultSet rs = JdbcHelper.query(SQL, topicId); Topic t = null; /*int userId = -1;*/ if (rs.next()) { // 當(dāng) 根據(jù) 問題的主鍵 獲取到 問題信息時(shí) t = new Topic(); // 創(chuàng)建 Topic 對(duì)象 t.setId(rs.getInt(1)); // 將 結(jié)果集 中的 該行數(shù)據(jù) 封裝到 t 對(duì)象的 id 屬性中 t.setTitle(rs.getString(2)); t.setContent(rs.getString(3)); t.setPublishTime(rs.getTimestamp(4)); t.setPublishIp(rs.getString(5)); User user = new User(); user.setId(rs.getInt(6)); t.setUser(user); } JdbcHelper.release(rs); // 關(guān)閉結(jié)果集 // 獲得提問者 final String getUserSQL = "SELECT id , username , password FROM t_user WHERE id = ? "; rs = JdbcHelper.query(getUserSQL, t.getUser().getId()); if(rs.next()) { User u = new User(); // 封裝數(shù)據(jù) u.setId(rs.getInt(1)); u.setUsername(rs.getString(2)); u.setPassword(rs.getString(3)); // 將獲取到的用戶數(shù)據(jù)設(shè)置到 Topic 對(duì)象的 user 屬性中 t.setUser(u); System.out.println("message username:" + rs.getString(2)); } JdbcHelper.release(rs); // 關(guān)閉結(jié)果集 // 獲得當(dāng)前的問題的所有解答 String explainSQL = "SELECT id , content , explain_time , explain_ip , user_id from t_explain where topic_id = ? "; rs = JdbcHelper.query(explainSQL, topicId); @SuppressWarnings("unused") int explainerId = -1; Listexplains = new ArrayList<>(); while (rs.next()) { Explain e = new Explain(); e.setId(rs.getInt(1)); e.setContent(rs.getString(2)); e.setExplainTime(rs.getTimestamp(3)); e.setExplainIp(rs.getString(4)); User user=new User(); user.setId(rs.getInt(5)); e.setUser(user); explains.add(e); System.out.println("explain userID:" + rs.getInt(5)); } // 獲得解答者 List explainList = new ArrayList(); for(int i=0;i
解答問題前臺(tái)顯示界面代碼;
$topic.title ## 登錄狀態(tài)欄 開始## 在 $ 之后 表達(dá)式之前使用 ! 表示 安靜模式 ( 靜默模式 ) 歡迎$!user.username來到問道 #if( $user ) 提問 | 我的提問 | 注銷 #else 登錄 | 注冊(cè) #end## 登錄狀態(tài)欄 結(jié)束 ## 標(biāo)志區(qū)域$topic.title
$topic.content提問時(shí)間: $topic.publishTime / 提問者: $topic.user.username#foreach( $ex in $topic.explains)$scope.remove( $session , 'topic' );$ex.content#end© 2017 愛問社區(qū)版權(quán)所有
我的解答Servlet處理代碼:
@WebServlet("/myAnswer.do") public class MyAnswerServlet extends HttpServlet { private static final long serialVersionUID = -3020889403557912216L; @Override protected void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { HttpSession session = request.getSession(); User user = (User) session.getAttribute( "user" ); // 在登錄時(shí)將 User 對(duì)象放入了 會(huì)話 中 Explain ex=null; final Listexp = new ArrayList<>(); if( user != null ) { int myid=user.getId(); final String SQL = "SELECT id ,content ,explain_time , explain_ip , user_id ,topic_id FROM t_explain WHERE user_id = ? "; ResultSet rs = JdbcHelper.query(SQL, myid); //Topic t=null; //final List explains = new ArrayList<>(); @SuppressWarnings("unused") int topicId=-1; try { while( rs.next() ) { ex=new Explain(); ex.setId(rs.getInt(1)); ex.setContent(rs.getString(2)); ex.setExplainTime(rs.getTimestamp( 3 )); ex.setExplainIp(rs.getString(4)); ex.setUser(user); Topic to=new Topic(); to.setId(rs.getInt(6)); ex.setTopic(to); topicId=rs.getInt(6); exp.add(ex); } JdbcHelper.release(rs); // 關(guān)閉結(jié)果集 for(int i = 0 , len = exp.size() ; i < len ; i++) { Explain explain=exp.get(i); Topic tid=explain.getTopic(); final String tSQL = "SELECT id , title , content , publish_time , publish_ip , user_id FROM t_topic WHERE id = ? "; ResultSet trs = JdbcHelper.query(tSQL, tid.getId()); while(trs.next()) { Topic t=new Topic(); t.setId(1); t.setTitle(trs.getString(2)); t.setContent(trs.getString(3)); t.setPublishTime(trs.getTimestamp(4)); t.setPublishIp(trs.getString(5)); ex.setTopic(t); // explains.add(ex); System.out.println( "我的tid: " + tid.getId()); } JdbcHelper.release(trs); // 關(guān)閉結(jié)果集 } } catch (SQLException e) { // TODO Auto-generated catch block e.printStackTrace(); } session.setAttribute("explains", exp); System.out.println( "我的解答列表: " + exp ); System.out.println( "我的id: " + myid); response.sendRedirect( request.getContextPath() + "/myAnswer.html"); } } }
我的解答前臺(tái)展示頁(yè)面代碼:
解答 #if( $user ) $user.username的所有回答: #end #foreach( $ex in $explains)#end
$ex.content
解答時(shí)間: $ex.explainTime
我的提問Servlet處理:
@WebServlet("/myQuestion.do") public class MyQuestionServlet extends HttpServlet { private static final long serialVersionUID = -4110483126223561394L; @Override protected void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { HttpSession session = request.getSession(); User user = (User) session.getAttribute( "user" ); // 在登錄時(shí)將 User 對(duì)象放入了 會(huì)話 中 if( user != null ) { int myid=user.getId(); final String SQL = "SELECT id , title , content, publish_time , publish_ip FROM t_topic WHERE user_id = ? "; ResultSet rs = JdbcHelper.query(SQL, myid); final Listqtopics = new ArrayList<>(); try { while( rs.next() ){ Topic t=new Topic(); t.setId(rs.getInt(1)); t.setTitle(rs.getString(2)); t.setContent(rs.getString(3)); t.setPublishTime(rs.getTimestamp(4)); t.setPublishIp(rs.getString(5)); qtopics.add(t); } } catch (SQLException e) { // TODO Auto-generated catch block e.printStackTrace(); } session.setAttribute("qtopics", qtopics); System.out.println( "我的提問列表: " + qtopics ); System.out.println( "我的id: " + myid); response.sendRedirect( request.getContextPath() + "/myQuestion.html"); } } }
我的提問展示代碼:
$user.username的提問 #if( $user ) $user.username的所有提問: #end #foreach( $qto in $qtopics)#end
$qto.content
提問者:$user.username $qto.publishTime
驗(yàn)證碼處理的Servlet代碼:
@WebServlet(urlPatterns= { "/verify/login.do" , "/verify/regist.do" } ) public class VerifyCodeServlet extends HttpServlet { private static final long serialVersionUID = 3398560501558431737L; @Override protected void service( HttpServletRequest request , HttpServletResponse response ) throws ServletException, IOException { // 獲得 當(dāng)前請(qǐng)求 對(duì)應(yīng)的 會(huì)話對(duì)象 HttpSession session = request.getSession(); // 從請(qǐng)求中獲得 URI ( 統(tǒng)一資源標(biāo)識(shí)符 ) String uri = request.getRequestURI(); System.out.println( "hello : " + uri ); final int width = 180 ; // 圖片寬度 final int height = 40 ; // 圖片高度 final String imgType = "jpeg" ; // 指定圖片格式 (不是指MIME類型) final OutputStream output = response.getOutputStream(); // 獲得可以向客戶端返回圖片的輸出流 (字節(jié)流) // 創(chuàng)建驗(yàn)證碼圖片并返回圖片上的字符串 String code = GraphicHelper.create( width, height, imgType, output ); System.out.println( "驗(yàn)證碼內(nèi)容: " + code ); // 建立 uri 和 相應(yīng)的 驗(yàn)證碼 的關(guān)聯(lián) ( 存儲(chǔ)到當(dāng)前會(huì)話對(duì)象的屬性中 ) session.setAttribute( uri , code ); System.out.println( session.getAttribute( uri ) ); } }
注冊(cè)前臺(tái)界面,有驗(yàn)證碼驗(yàn)證功能:
注冊(cè)愛問社區(qū) 加入愛問社區(qū),為您答疑解惑© 2017 愛問社區(qū)版權(quán)所有
Servlet處理注冊(cè),實(shí)現(xiàn)驗(yàn)證碼驗(yàn)證:
@WebServlet("/regist.do") public class RegistServlet extends HttpServlet { private static final long serialVersionUID = 7493633832455111617L; @Override protected void service( HttpServletRequest request , HttpServletResponse response ) throws ServletException, IOException { // 獲得來自 頁(yè)面 表單上的數(shù)據(jù) String verifyCode = request.getParameter( "verifyCode" ) ; // 獲得由用戶輸入的那個(gè)驗(yàn)證碼 String username = request.getParameter( "username" ) ; String password = request.getParameter( "password" ) ; String confirm = request.getParameter( "confirm" ) ; System.out.println( "username : " + username ); System.out.println( "password : " + password ); System.out.println( "confirm : " + confirm ); System.out.println( "verifyCode : " + verifyCode ); HttpSession session = request.getSession(); // 獲得 在 會(huì)話 中存儲(chǔ)的那個(gè) 為登錄進(jìn)行驗(yàn)證的 驗(yàn)證碼 final String code = (String)session.getAttribute( "/wendao/verify/regist.do" ); System.out.println( "session code : " + code ); // 比較驗(yàn)證碼 if( StringHelper.equals( verifyCode , code ) ){ // 要保證 用戶名 不為空 、密碼不能為空 、兩次輸入的密碼必須一致 if( StringHelper.notEmpty( username ) && StringHelper.notEmpty( password ) && StringHelper.equals( password , confirm) ) { // 可以保存了 String SQL = "INSERT INTO t_user ( username , password ) VALUES ( ? , ? ) " ; int n = JdbcHelper.insert( SQL , false , username , StringHelper.MD5(password)); if( n > 0 ) { // 如果 insert 返回 大于 0 的數(shù)字 , 則表示 插入成功 // 保存成功以后,應(yīng)該去一個(gè)新的頁(yè)面 ( 比如去 登錄頁(yè)面 ) response.sendRedirect( request.getContextPath() + "/login.html" ); } else { // 回到注冊(cè)頁(yè)面去 session.setAttribute( "registFail" , "注冊(cè)失敗,可能是用戶名被占用了" ); response.sendRedirect( request.getContextPath() + "/regist.html" ); } } else { // 回到注冊(cè)頁(yè)面去 session.setAttribute( "registFail" , "用戶名或密碼為空,或者密碼不一致" ); response.sendRedirect( request.getContextPath() + "/regist.html" ); } } else { // 如果驗(yàn)證碼不一致,設(shè)置提示信息后回到注冊(cè)頁(yè)面去 session.setAttribute( "registFail" , "驗(yàn)證碼輸入錯(cuò)誤,請(qǐng)重新輸入" ); response.sendRedirect( request.getContextPath() + "/regist.html" ); } } }
登錄Servlet處理代碼:
@WebServlet("/login.do") public class LoginServlet extends HttpServlet { private static final long serialVersionUID = 18854422651747352L; @Override protected void service( HttpServletRequest request , HttpServletResponse response ) throws ServletException, IOException { // 獲得來自 頁(yè)面 表單上的數(shù)據(jù) String username = request.getParameter( "username" ) ; String password = StringHelper.MD5(request.getParameter( "password" )) ; System.out.println( "username : " + username ); System.out.println( "password : " + password ); HttpSession session = request.getSession(); // 登錄 : 根據(jù) 用戶名 和 密碼 從數(shù)據(jù)庫(kù)中查詢數(shù)據(jù),如果都正確,就將這些數(shù)據(jù)放入到會(huì)話中,最后進(jìn)入到指定頁(yè)面( list.html ) String SQL = "SELECT id , username , password FROM t_user WHERE username = ? and password = ? " ; ResultSet rs = JdbcHelper.query( SQL, username , password ) ; try{ // 如果查詢到數(shù)據(jù),就包裝到一個(gè)對(duì)象中 if( rs.next() ) { User user = new User(); // 創(chuàng)建對(duì)象 // 封裝數(shù)據(jù) user.setId( rs.getInt( 1 ) ); user.setUsername( rs.getString( 2 )); user.setPassword( rs.getString( 3 ) ) ; //System.out.println("測(cè)試"+MD5.convertMD5(MD5.convertMD5(password))); /** 將 User 對(duì)象 放入到 會(huì)話中 **/ session.setAttribute( "user" , user ); // 重定向到 list.do ( list.do 會(huì)先查詢數(shù)據(jù)后 再 重定向到 list.html ) response.sendRedirect( request.getContextPath() + "/list.do" ); } else { // 如果 用戶名 或 密碼 錯(cuò)誤,重新返回到 登錄頁(yè)面 session.setAttribute( "loginFail" , "用戶名或密碼錯(cuò)誤" ); response.sendRedirect( request.getContextPath() + "/login.html" ); } } catch ( SQLException e ){ e.printStackTrace(); } } }
登錄前臺(tái)展示界面代碼;
登錄 愛問社區(qū)
還沒有賬號(hào)?
立即免費(fèi)注冊(cè)
趕快免費(fèi)注冊(cè)一個(gè)吧!
好啦,基本的代碼就展示完了,還有比較通用的POJO類和jdbc連接數(shù)據(jù)庫(kù)的類就不做展示了,貼上數(shù)據(jù)庫(kù)SQL代碼,需要的可以根據(jù)字段來寫
DROP TABLE IF EXISTS `t_explain`; CREATE TABLE `t_explain` ( `id` int(11) NOT NULL AUTO_INCREMENT, `content` text, `explain_time` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP, `explain_ip` varchar(50) DEFAULT NULL, `user_id` int(8) DEFAULT NULL, `topic_id` int(8) DEFAULT NULL, PRIMARY KEY (`id`), KEY `ex_id` (`user_id`), KEY `t_id` (`topic_id`), CONSTRAINT `ex_id` FOREIGN KEY (`user_id`) REFERENCES `t_user` (`id`), CONSTRAINT `t_id` FOREIGN KEY (`topic_id`) REFERENCES `t_topic` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for t_topic -- ---------------------------- DROP TABLE IF EXISTS `t_topic`; CREATE TABLE `t_topic` ( `id` int(10) NOT NULL AUTO_INCREMENT, `title` varchar(255) DEFAULT NULL, `content` text, `publish_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `publish_ip` varchar(100) DEFAULT NULL, `user_id` int(10) DEFAULT NULL, PRIMARY KEY (`id`), KEY `cid` (`user_id`), CONSTRAINT `cid` FOREIGN KEY (`user_id`) REFERENCES `t_user` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for t_user -- ---------------------------- DROP TABLE IF EXISTS `t_user`; CREATE TABLE `t_user` ( `id` int(10) NOT NULL AUTO_INCREMENT, `username` varchar(20) NOT NULL, `password` varchar(255) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `username` (`username`) ) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8;
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。