Spring+Hibernate查询复合主键报错
原本在C/S项目中的测试通过,但是在转换到B/S的时候就报错了,
复合主键的查询代码是
-
/**
-
* 获得指定编号的种别
-
* @param sortID
-
* @param category
-
* @return
-
*/
-
InstrumentSort sort = new InstrumentSort();
-
sort.setSortId(sortID);
-
sort.setInstrumentCategory(category);
-
return (InstrumentSort) this.getHibernateTemplate().getSessionFactory().getCurrentSession().load(InstrumentSort.class, sort);
-
}
其中sortID和category是InstrumentSort的主键。
报的错误是org.hibernate.LazyInitializationException: could not initialize proxy - no Session
于是在InstrumentSort.hbm.xml的<hibernate-mapping>里加上了 default-lazy="false" 属性 就成功了 囧rz 原因为啥不知