Transaction transaction = session.beginTransaction();
//load是通过主键属性,获取对象的实例
Employee employee =(Employee) session.load(Employee.class, 1);
employee.setName("demo");
transaction.commit();
session.close();
报错The method load(Class, Serializable) in the type Session is not applicable for the arguments (Class<T>, int)
myeclipse明显的报错,这说明在myeclipse中jdk的自动拆装箱没有自动完成,但我的jdk用的是java8的。
使用
Transaction transaction = session.beginTransaction();
//load是通过主键属性,获取对象的实例
Employee employee =(Employee) session.load(Employee.class, new Integer(1));
employee.setName("demo");
transaction.commit();
session.close();
就行了,网上找了下,发现这应该是hibernate版本的问题,在hibernate中的操作,要看你引用的hibernate版本本身是否支持自动拆装。
应该是hibernate本身不允许这么做,所以才必须要写成对象类型才能进行查询,这和jdk已经无关了。
The method load(Class, Serializable) in the type Session is not applicable for the arguments (Class<
原文地址:http://blog.csdn.net/qq_20545159/article/details/43969837