hibernate 配置
hibernate 需要知道在哪里找到映射信息,這些映射信息定義了 java 類怎樣關(guān)聯(lián)到數(shù)據(jù)庫(kù)表。
hibernate 也需要一套相關(guān)數(shù)據(jù)庫(kù)和其它相關(guān)參數(shù)的配置設(shè)置。所有這些信息通常是作為一個(gè)標(biāo)準(zhǔn)的 java 屬性文件提供的,文件名稱為 hibernate.properties
,或者使用xml 文件 hibernate.cfg.xml
。
我們將考慮 hibernate.cfg.xml
這個(gè) xml 格式文件,來(lái)決定在我的例子里指定需要的 hibernate 應(yīng)用屬性。這個(gè) xml 文件中大多數(shù)的屬性是不需要修改的。這個(gè)文件保存在應(yīng)用程序的類路徑的根目錄里。
hibernate 屬性
下面是一個(gè)重要的屬性列表,你可能需要表中的屬性來(lái)在單獨(dú)的情況下配置數(shù)據(jù)庫(kù)。
s.n. | 屬性和描述 |
---|---|
1 | hibernate.dialect 這個(gè)屬性使 hibernate 應(yīng)用為被選擇的數(shù)據(jù)庫(kù)生成適當(dāng)?shù)?sql。 |
2 | hibernate.connection.driver_class jdbc 驅(qū)動(dòng)程序類。 |
3 | hibernate.connection.url 數(shù)據(jù)庫(kù)實(shí)例的 jdbc url。 |
4 | hibernate.connection.username 數(shù)據(jù)庫(kù)用戶名。 |
5 | hibernate.connection.password 數(shù)據(jù)庫(kù)密碼。 |
6 | hibernate.connection.pool_size 限制在 hibernate 應(yīng)用數(shù)據(jù)庫(kù)連接池中連接的數(shù)量。 |
7 | hibernate.connection.autocommit 允許在 jdbc 連接中使用自動(dòng)提交模式。 |
如果您正在使用 jndi 和數(shù)據(jù)庫(kù)應(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 類中通過(guò)任何你想要的 java 命名和目錄接口屬性。 |
4 | hibernate.jndi.url 為 jndi 提供 url。 |
5 | hibernate.connection.username 數(shù)據(jù)庫(kù)用戶名。 |
6 | hibernate.connection.password 數(shù)據(jù)庫(kù)密碼。 |
hibernate 和 mysql 數(shù)據(jù)庫(kù)
mysql 數(shù)據(jù)庫(kù)是目前可用的開源數(shù)據(jù)庫(kù)系統(tǒng)中最受歡迎的數(shù)據(jù)庫(kù)之一。我們要?jiǎng)?chuàng)建 hibernate.cfg.xml
配置文件并將其放置在應(yīng)用程序的 classpath
的根目錄里。你要確保在你的 mysql 數(shù)據(jù)庫(kù)中 testdb 數(shù)據(jù)庫(kù)是可用的,而且你要有一個(gè)用戶 test 可用來(lái)訪問(wèn)數(shù)據(jù)庫(kù)。
xml 配置文件一定要遵守 hibernate 3 configuration dtd,在 http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd. 這個(gè)網(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ù)庫(kù)同源語(yǔ)屬性類型的列表:
數(shù)據(jù)庫(kù) | 方言屬性 |
---|---|
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 |
- JDBC 教程
- JDBC 驅(qū)動(dòng)類型
- JDBC 連接數(shù)據(jù)庫(kù)范例
- JDBC 連接數(shù)據(jù)庫(kù)步驟
- JDBC Statement, PreparedStatement 和 CallableStatement
- JDBC ResultSet 結(jié)果集
- JDBC Resultset 結(jié)果集范例
- JDBC 事務(wù)保存點(diǎn)范例
- Scala 教程
- Scala 簡(jiǎn)介
- Scala 類和對(duì)象
- Scala 文件 I/O
- Spring 教程
- Spring 模塊
- Spring 依賴注入
- Spring 自動(dòng)裝配
- Spring MVC教程
- Spring MVC表單標(biāo)簽庫(kù)
- Spring security