一、通过对象进行查找
1、在dao的实现类中继承HibernateDaoSupport,
2、获得Hibernate模板,HibernateTemplate ht=this.getHibernateTemplate();
3.List<Users> list=ht.findByExample(us);//用于登录时使用,往方法中传一个对象,会自动返回该对象的所有信息
二、
一、通过对象进行查找
1、在dao的实现类中继承HibernateDaoSupport,
2、获得Hibernate模板,HibernateTemplate ht=this.getHibernateTemplate();
3.List<Users> list=ht.findByExample(us);//用于登录时使用,往方法中传一个对象,会自动返回该对象的所有信息
二、