问题描述
- hql带多个条件查询报null错误,但是数据库能查到值
-
String hql = "from Userinfo u where u.userName=? and u.userPassword=? and u.sysrole.roleCode='1101'";
Query query = this.getSession().createQuery(hql);
query.setParameter(0, userName);
query.setParameter(1, userPwd);
Userinfo user = (Userinfo) query.uniqueResult();
System.out.println(user);
return user;打印出来的user为空,但是根据得到的条件在数据库能查到值
时间: 2025-01-21 02:09:05