報錯-->Parameter 'name' not found. Available parameters are [1, 0, param1, param2]
百度找到這篇文章完成修改 http://blog.csdn.net/w86440044/article/details/29363067
我之前寫的操作類是和博主一樣,是這樣的:
1 // 登錄·查詢 2 @Select("select * from t_users where uname=#{name} and pswd=#{pswd}") 3 public Users findByNP(String name, String pswd);
結果測試時彈出上面報錯,按博主方法修改後:
1 // 登錄·查詢 2 @Select("select * from t_users where uname=#{0} and pswd=#{1}") 3 public Users findByNP(String name, String pswd);
運行測試程序就正常了
結果:那個地方不可以用名稱匹配,還有其它原因嗎?