本文主要是介绍java.lang.ClassCastException: org.hibernate.impl.QueryImpl cannot be cast to java.util.List,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
java.lang.ClassCastException: org.hibernate.impl.QueryImpl cannot be cast to java.util.List
List list = (List)hibernateTemplate.getSessionFactory().getCurrentSession().createQuery(hql).setInteger("mid", 1)
后面少了一个list();
List list = (List)hibernateTemplate.getSessionFactory().getCurrentSession().createQuery(hql)
.setInteger("mid", 1).list();
错误:应该是类型转换错误
这篇关于java.lang.ClassCastException: org.hibernate.impl.QueryImpl cannot be cast to java.util.List的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!