我正在使用hibernate模板从表course
中检索有两列的数据,
courseId
和courseName
。我想使用hibernate模板从courseName
中选择course
。
当我使用时:
List<String> courseNames=hibernateTemplate.find("courseName from domain.Course");
我得到以下异常:
java.lang.IllegalArgumentException: node to traverse cannot be null!
答案 0 :(得分:2)
答案 1 :(得分:1)
hibernateTemplate.find("c.courseName from domain.Course c")
根据JPQL语法猜测。