5 回答
_劣徒Sadness
TA贡献2条经验 获得超1个赞
dao类里定义public List<News> findNewsByTypeid(int typeid)方法,Service类调用dao类,Action类调用Service类的方法,将返回值赋值给Action类里的集合变量。
大咪
TA贡献785条经验 获得超332个赞
就拿登录的模块给你说一下,代码实现如下:
String hql = "from Employee where username = ? and password = ?"; //这句话通过hibernate的模板发现hql语句并且核对查询 List<Employee> list = this.getHibernateTemplate().find(hql, employee.getUsername(),employee.getPassword()); //如果list有值 if(list.size()>0){ //返回得到的第一个值 return list.get(0); }
添加回答
举报
0/150
提交
取消