hibernate 4的版本不可以适用hibernateDaoSupport,具体修改方法请看https://www.cnblogs.com/lihuiyy/archive/2013/03/21/2972641.html
2018-03-07
List<Employee> list = this.getHibernateTemplate().find(hql, employee.getUsername(),employee.getPassword());
这样写find会报错,这里可以改为:
List<Employee> list = (List<Employee>) this.getHibernateTemplate().find(hql,new String[] {employee.getUsername(),employee.getPassword()});
这样写find会报错,这里可以改为:
List<Employee> list = (List<Employee>) this.getHibernateTemplate().find(hql,new String[] {employee.getUsername(),employee.getPassword()});
2018-02-24
https://github.com/leonardowind/ssh_employee
windows10下,使用IDEA、MySQL开发
windows10下,使用IDEA、MySQL开发
2018-02-20
个人源码,有需要的可以参考: https://github.com/yxyyzyf/Java 。项目名ssh01,实现基本增删查改,有明显的业务bug,与知识点不冲突,hibernate4+Spring+Struts2,maven构建,数据源c3p0,数据库mysql
2018-01-29