Hibernate全域性配置檔案中常用標記的使用

2021-06-02 11:06:02 字數 1021 閱讀 5348

配置檔案舉例:

"-//hibernate/hibernate configuration dtd 3.0//en"

"">

"hibernate.connection.driver_class">com.mysql.jdbc.driver

"hibernate.connection.url">jdbc:mysql:///user

"connection.username">root

"connection.password">1234

"dialect">org.hibernate.dialect.mysqldialect

"hibernate.hbm2ddl.auto">update

"hibernate.show_sql">true

全域性配置檔案中的各個標記的含義及其使用:

hibernate.connection.driver_class    表示要鏈結的資料庫的驅動類

hibernate.connection.username     要連線的資料庫的使用者名稱

hibernate.connection.password      要連線的資料庫的密碼

hibernate.dialect   表示要使用的資料庫的型別

org.hibernate.dialect.mysql5dialect       mysql資料庫

org.hibernate.dialect.oracle9dialect        oracle資料庫

org.hibernate.dialect.sqlserverdialect    sqlserver資料庫

hibernate.hbm2ddl.auto

validate:載入hibernate時驗證建立表結構

update:載入hibernate時自動更新資料庫結構,如果表存在不用建立,如果不存在就建立。

create:每一次載入hibernate時都建立表結構

create-drop:載入hibernate時建立,退出時刪除

Hibernate的配置檔案配置

hiebernate一共有兩種方式,xml檔案配置和注釋配置,這裡就只講第一種配置方式 xml配置檔案配置,而xml檔案配置需要配置兩個檔案,分別是hibernate.cfg.xml和 hbm.xml 這個 是和實體類名一樣的,例如customer的實體類,如下 public class custo...

Hibernate的配置檔案

必選項 hibernate.connection.username 訪問的資料庫使用者名稱 hibernate.connection.password 訪問的資料庫密碼 hibernate.connection.url 連線資料庫的url hibernate.connection.driver cl...

Hibernate主配置檔案

主配置hibernate.cfg.xml 一.配置的key前面的hibernate.字首可有可無 二.按作用分為三類 1.資料庫資訊 五個配置資訊 方言 驅動 url username password org.hibernate.dialect.mysqldialect jdbc mysql hi...