ssh项目getHibernateTemplate().find()出现空指针异常

发布于 2022-09-05 23:25:42 字数 629 浏览 17 评论 0

public Employee findByUsernameAndPassword(Employee employee) {
        String hql = "from Employee where username = ? and password = ?";
        List<Employee> list = this.getHibernateTemplate().find(hql,employee.getUsername(),employee.getPassword());
        if(list.size()>0) {
            return list.get(0);
        }
        return null;
    }

异常:

2017-09-26 11:03:49 [信息] Exception occurred during processing request: null
java.lang.NullPointerException
    at cc.test.employee.dao.impl.EmployeeDaoImpl.findByUsernameAndPassword(EmployeeDaoImpl.java:18)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

给不了的爱 2022-09-12 23:25:42

行号?
到底employeenull还是list

蒗幽 2022-09-12 23:25:42

打印下getHibernateTemplate吧

风为裳 2022-09-12 23:25:42

employee是否为null?

泪冰清 2022-09-12 23:25:42

HibernateTemplate 有注入sessionfactory么?

空‖城人不在 2022-09-12 23:25:42

调用this.getHibernateTemplate() 报空指针异常了或者 employee 为null了。

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文