2013年3月5日 星期二

Hibernate心得2 in eclipse 資源檔位置

一不小心 就配置錯誤 導致 org.apache.jasper.JasperException: /hibernate.cfg.xml not found

在此紀錄一下位置

------解决方法--------------------------------------------------------
没有hibernate.cfg.xml 写一个丢到classes下去 
------解决方法--------------------------------------------------------
你用的hibernate.cfg.xml还是hibernate.properties 
------解决方法--------------------------------------------------------
没有hibernate.cfg.xml


=====================================

以下是我在 eclipse 放的成功 位置







實際部屬在Tomcat的路徑




參考來源 :  http://www.myexception.cn/java%20exception/264.html

2013年3月1日 星期五

Hibernate心得

前幾天上了一下 Hibernate 的課程,在此作一個摘要,


  • 簡單的說 Hibernate  有一個好處可以當個接口,讓資料庫找到的資料直接轉成定義好得物件。
  • 而資料庫的連結定義,試用組態的XML來定義的,要抽換更改比較有彈性
  • 除了可以使用HQL的方式查詢,也可以利用 criteria 查詢, criteria  簡單的說定一種查詢的function 而不需使用SQL 類似的查詢語句 




Hibernate 網站 (http://www.hibernate.org/)