我想實現我的第一個休眠的SQL查詢休眠sql查詢
public List<Subjectgrouplist> getSubjectgroups() {
return hibernateTemplate.find("from subjectgrouplist where id > 0");
}
我試圖返回所有表。我知道where子句不合適,但我仍然試用過。有人能告訴我如何構建查詢嗎?
我的目標是在jsp中用foreach-tag打印列表。
我想實現我的第一個休眠的SQL查詢休眠sql查詢
public List<Subjectgrouplist> getSubjectgroups() {
return hibernateTemplate.find("from subjectgrouplist where id > 0");
}
我試圖返回所有表。我知道where子句不合適,但我仍然試用過。有人能告訴我如何構建查詢嗎?
我的目標是在jsp中用foreach-tag打印列表。
試試這個:
public List<Subjectgrouplist> getSubjectgroups() {
return hibernateTemplate.find("from SubjectGroup x where x.id > 0");
}
檢查http://stackoverflow.com/questions/1304965/how-can-i-replicate-show-tables-in-hibernate和http://stackoverflow.com/問題/ 4813122/get-all-table-names-set-up-in-sessionfactory – FrEaKmAn
爲了上帝的緣故,如何閱讀文檔?它在這裏:http://docs.jboss.org/hibernate/core/3.6/reference/en-US/html_single/#queryhql,第一段談到區分大小寫。 –