程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> select-spring jdbc template 用戶名密碼驗證

select-spring jdbc template 用戶名密碼驗證

編輯:編程綜合問答
spring jdbc template 用戶名密碼驗證

我用spring jdbc template操作數據庫,當我需要驗證用戶登陸的用戶名和密碼時傳入兩個參數userName和password,但是我怎麼從數據庫中select出同時滿足這兩個條件的User?????我現在的做法是queryForObject(sql, RowMapper)返回一個User對象,然後再去getUsername和getPassword,再做比對。但個人覺得這樣比較麻煩。就不能select * from user_table where userName=? and password=? 一樣的辦法嗎?或者說就不能有同時加入兩個參數的查詢嗎??渣渣求大神指教!!!

最佳回答:


簡單的返回一個int參數就行 如果是0說明不存在
return queryForInt("select count(*) from user_tb where user_name=? and user_password=? ",new Object[]{name,password},RowMapper);

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved