Hibernate設定屬性

2020-07-16 10:05:06
Hibernate 通過讀取預設的組態檔來載入資料庫設定資訊,該組態檔應放於 classpath 根目錄下,預設的組態檔名稱為 Hibernate.cfg.xml。Hibernate.cfg.xml 檔案中不僅包含資料庫的設定資訊,而且包含了使用者對 Hibernate 所設定的屬性資訊,如列印 SQL 語句、自動建表等。其設定方法如下:
<?xml version='1.0'encoding='UTF-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
  <session-factory>
    <!--資料庫驅動-->
    <property name="connection.driver_class">com.mysql.jdbc.Driver</property>
    <!--資料庫連線的URL-->
    <property name="connection.url">jdbc:mysql://localhost:3306/test</property>
    <!--資料庫連線使用者名稱-->
    <property name="connection.username">root</property>
    <!--資料庫連線密碼-->
    <property name="connection.password">111</property>
    <!--Hibernate方言-->
    <property name="dialect">org.hibernate.dialect.MySQLDialect</property>
    <!--列印SQL語句-->
    <property name="show_sql">true</property>
    <!--對映檔案-->
    <mapping resource="com/lyq/User.hbm.xml"/>
  </session-factory>
</hibernate-configuration>