问答详情
源自:2-2 SSH-案例:登录功能代码实现

哪位大神能把用的hibernate4的dao层代码给贴出来谢谢啦

我用的hibernate4 不知道dao层代码怎么写 哪位大神能给写一下谢谢

提问者:慕粉1937076946 2017-05-11 18:12

个回答

  • 南瓜头先生
    2017-05-12 15:36:15
    已采纳

    public Employee findByUsernameAndPassword(Employee employee) {
       Session session = this.getSessionFactory().openSession();
       Transaction tx = session.beginTransaction();
       String hql2 = "from Employee e where e.username= '"+employee.getUsername()+"' and e.password = '"+employee.getPassword()+"'";
       Query q = session.createQuery(hql2);
       List<Employee> list =q.list();
       if(list.size()>0){
           return list.get(0);
       }
       tx.commit();
       session.close();
       return null;
    }

  • OMG快到碗里来
    2017-09-06 11:11:29

    非常感谢上面的