Hibernate 配置

hibernate 配置

hibernate 需要知道在哪里找到映射信息,這些映射信息定義了 java 類怎樣關(guān)聯(lián)到數(shù)據(jù)庫表。

hibernate 也需要一套相關(guān)數(shù)據(jù)庫和其它相關(guān)參數(shù)的配置設(shè)置。所有這些信息通常是作為一個標(biāo)準(zhǔn)的 java 屬性文件提供的,文件名稱為 hibernate.properties,或者使用xml 文件 hibernate.cfg.xml

我們將考慮 hibernate.cfg.xml 這個 xml 格式文件,來決定在我的例子里指定需要的 hibernate 應(yīng)用屬性。這個 xml 文件中大多數(shù)的屬性是不需要修改的。這個文件保存在應(yīng)用程序的類路徑的根目錄里。

 

hibernate 屬性

下面是一個重要的屬性列表,你可能需要表中的屬性來在單獨的情況下配置數(shù)據(jù)庫。

s.n. 屬性和描述
1 hibernate.dialect
這個屬性使 hibernate 應(yīng)用為被選擇的數(shù)據(jù)庫生成適當(dāng)?shù)?sql。
2 hibernate.connection.driver_class
jdbc 驅(qū)動程序類。
3 hibernate.connection.url
數(shù)據(jù)庫實例的 jdbc url。
4 hibernate.connection.username
數(shù)據(jù)庫用戶名。
5 hibernate.connection.password
數(shù)據(jù)庫密碼。
6 hibernate.connection.pool_size
限制在 hibernate 應(yīng)用數(shù)據(jù)庫連接池中連接的數(shù)量。
7 hibernate.connection.autocommit
允許在 jdbc 連接中使用自動提交模式。

如果您正在使用 jndi 和數(shù)據(jù)庫應(yīng)用程序服務(wù)器然后您必須配置以下屬性:

s.n. 屬性和描述
1 hibernate.connection.datasource
在應(yīng)用程序服務(wù)器環(huán)境中您正在使用的應(yīng)用程序 jndi 名。
2 hibernate.jndi.class
jndi 的 initialcontext 類。
3 hibernate.jndi.<jndipropertyname>
在 jndi的 initialcontext 類中通過任何你想要的 java 命名和目錄接口屬性。
4 hibernate.jndi.url
為 jndi 提供 url。
5 hibernate.connection.username
數(shù)據(jù)庫用戶名。
6 hibernate.connection.password
數(shù)據(jù)庫密碼。

 

hibernate 和 mysql 數(shù)據(jù)庫

mysql 數(shù)據(jù)庫是目前可用的開源數(shù)據(jù)庫系統(tǒng)中最受歡迎的數(shù)據(jù)庫之一。我們要創(chuàng)建 hibernate.cfg.xml 配置文件并將其放置在應(yīng)用程序的 classpath 的根目錄里。你要確保在你的 mysql 數(shù)據(jù)庫中 testdb 數(shù)據(jù)庫是可用的,而且你要有一個用戶 test 可用來訪問數(shù)據(jù)庫。

xml 配置文件一定要遵守 hibernate 3 configuration dtd,在 http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd. 這個網(wǎng)址中是可以找到的。

<?xml version="1.0" encoding="utf-8"?>
<!doctype hibernate-configuration system
"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">

<hibernate-configuration>
   <session-factory>
   <property name="hibernate.dialect">
      org.hibernate.dialect.mysqldialect
   </property>
   <property name="hibernate.connection.driver_class">
      com.mysql.jdbc.driver
   </property>

   <!-- assume test is the database name -->
   <property name="hibernate.connection.url">
      jdbc:mysql://localhost/test
   </property>
   <property name="hibernate.connection.username">
      root
   </property>
   <property name="hibernate.connection.password">
      root123
   </property>

   <!-- list of xml mapping files -->
   <mapping resource="employee.hbm.xml"/>

</session-factory>
</hibernate-configuration>

上面的配置文件包含與 hibernate-mapping 文件相關(guān)的 <mapping> 標(biāo)簽,我們將在下章看看 hibernate mapping 文件到底是什么并且要知道為什么用它,怎樣用它。以下是各種重要數(shù)據(jù)庫同源語屬性類型的列表:

數(shù)據(jù)庫 方言屬性
db2 org.hibernate.dialect.db2dialect
hsqldb org.hibernate.dialect.hsqldialect
hypersonicsql org.hibernate.dialect.hsqldialect
informix org.hibernate.dialect.informixdialect
ingres org.hibernate.dialect.ingresdialect
interbase org.hibernate.dialect.interbasedialect
microsoft sql server 2000 org.hibernate.dialect.sqlserverdialect
microsoft sql server 2005 org.hibernate.dialect.sqlserver2005dialect
microsoft sql server 2008 org.hibernate.dialect.sqlserver2008dialect
mysql org.hibernate.dialect.mysqldialect
oracle (any version) org.hibernate.dialect.oracledialect
oracle 11g org.hibernate.dialect.oracle10gdialect
oracle 10g org.hibernate.dialect.oracle10gdialect
oracle 9i org.hibernate.dialect.oracle9idialect
postgresql org.hibernate.dialect.postgresqldialect
progress org.hibernate.dialect.progressdialect
sap db org.hibernate.dialect.sapdbdialect
sybase org.hibernate.dialect.sybasedialect
sybase anywhere org.hibernate.dialect.sybaseanywheredialec

下一節(jié):hibernate 持久化類

hibernate 教程

相關(guān)文章
亚洲国产精品第一区二区,久久免费视频77,99V久久综合狠狠综合久久,国产免费久久九九免费视频