I am working on converting our application from hibernate2, spring 1.2 to hibernate3 spring 1.2.5.
I have looked at the hibernate migration guide
http://www.hibernate.org/250.html#A14 and this forum
http://forum.springframework.org/showthread.php?t=13913
but cannot find a replacement for
List list = (List)getHibernateTemplate().findByNamedQuery(strB uf.toString(),new Object[]{assignRuleId},new Type[] {Hibernate.INTEGER});
OR
getHibernateTemplate().find(
query ,new Object[]{locId,businessDate,gsIdType},
new Type[]{Hibernate.INTEGER,Hibernate.DATE,Hibernate.STRING });
Any help is appreciated. :cry:


Reply With Quote