作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
List<Candidate> candidates = (List<Candidate>) session.createSQLQuery("select candidate.* from candidate inner join candidate_skill on candidate.id = candidate_skill.candidate_id inner join skill on candidate_skill.skill_id = skill.id where skill.id = 1");
我明白了:
java.lang.ClassCastException: org.hibernate.internal.SQLQueryImpl cannot be cast to java.util.List
查询正确。如何解决?
最佳答案
您在查询结束时忘记了 .list()
。
应该是这样的
................skill.id where skill.id = 1").list();
引用hibernate documentation了解更多信息。
关于java.lang.ClassCastException : org. hibernate.internal.SQLQueryImpl 无法转换为 java.util.List 如何修复,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18148482/
我们无法弄清楚为什么在 executeUpdate 查询上使用 setParameter 与使用 setString、setLong 相比要慢。 SQLQueryImpl query = sess
List candidates = (List) session.createSQLQuery("select candidate.* from candidate inner join candid
我是一名优秀的程序员,十分优秀!