我用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);