標籤:包括 config 不同的 映射 一個資料庫 hbm 讀者 檔案的 factory
首先我們看一下hibernate的主設定檔
1 <!DOCTYPE hibernate-configuration PUBLIC 2 "-//Hibernate/Hibernate Configuration DTD 3.0//EN" 3 "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd"> 4 5 <hibernate-configuration> 6 <!-- 通常,一個session-factory節點代表一個資料庫 --> 7 <session-factory> 8 9 <!-- 1. 資料庫連接配置 -->10 <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>11 <property name="hibernate.connection.url">jdbc:mysql:///day17</property>12 <property name="hibernate.connection.username">root</property>13 <property name="hibernate.connection.password">root</property>14 <!-- 15 資料庫方法配置, hibernate在啟動並執行時候,會根據不同的方言產生符合當前資料庫文法的sql16 -->17 <property name="hibernate.dialect">org.hibernate.dialect.MySQL5Dialect</property>18 19 20 <!-- 2. 其他相關配置 -->21 <!-- 2.1 顯示hibernate在運行時候執行的sql語句 -->22 <property name="hibernate.show_sql">true</property>23 <!-- 2.2 格式化sql -->24 <property name="hibernate.format_sql">true</property>25 <!-- 2.3 自動建表 -->26 <property name="hibernate.hbm2ddl.auto">update</property>27 28 29 <!-- 3. 載入所有映射 -->30 <mapping resource="cn/itcast/entity/Employee.hbm.xml"/>31 32 </session-factory>33 </hibernate-configuration>
裡面主要得代碼都有注釋說明,大家一看就會懂,在xml檔案的最近,我們看到有一句代碼為:
<!-- 3. 載入所有映射 -->3<mapping resource="cn/itcast/entity/Employee.hbm.xml"/>
這是添加一個對應檔,意思就是你要使用的資料庫中的表
對應檔為:
<?xml version="1.0"?><!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd"><hibernate-mapping package="cn.itcast.entity"> <class name="Employee" table="employee"> <!-- 主鍵 ,映射--> <id name="empId" column="id"> <generator class="native"/> </id> <!-- 非主鍵,映射 --> <property name="empName" column="name"></property> <property name="workDate" column="workDate"></property> </class></hibernate-mapping>
這個設定檔和一個實體類 Employee.java相關聯,name裡面的值是類中的屬性,column裡面的值是資料庫表employee中的欄位名稱,通過映射相關聯起來。
相對應的實體類中的屬性描述為:
相應的資料庫表employee的欄位為:
通過對應檔相關聯起來。
如上所述,就是一個簡單的hibernate的配置過程,如果新手讀者想學習的話,可以將上述檔案中的部分改一下就可以了,主設定檔中主要涉及資料庫的串連,包括資料庫驅動,所串連的資料庫名稱,以及資料庫使用者名稱以及密碼,還有就是下面的要載入的對應檔。
關於對應檔的修改,可以仿照上面我的例子進行修改然後運用到自己的例子的。
有任何問題,可以在下方評論。
Hibernate中設定檔的學習