hibernate的環境搭建及使用

2021-10-06 17:55:34 字數 3238 閱讀 5850

二、環境搭建

三、**測試

/** * @author 若風

* @version 1.0

*/public

class

customer

public

void

setcust_id

(long cust_id)

public string getcust_name()

public

void

setcust_name

(string cust_name)

public string getcust_source()

public

void

setcust_source

(string cust_source)

public string getcuso_industry()

public

void

setcuso_industry

(string cuso_industry)

public string getcust_level()

public

void

setcust_level

(string cust_level)

public string getcust_phone()

public

void

setcust_phone

(string cust_phone)

public string getcust_mobile()

public

void

setcust_mobile

(string cust_mobile)

}

<

?xml version=

"1.0" encoding=

"utf-8"

?>

<

>

<

!--建立類與表的對映--

>

<

class

name

="com.itheima.hibernate.demo1.customer" table=

"cst_customer"

>

<

!--建立類中的屬性與表中的屬性主鍵對應--

>

"cust_id" column=

"cust_id"

>

="native"

/>

<

/id>

"cust_name" column=

"cust_name"

/>

"cust_source" column=

"cust_source"

/>

"cuso_industry" column=

"cust_industry"

/>

"cust_level" column=

"cust_level"

/>

"cust_phone" column=

"cust_phone"

/>

"cust_mobile" column=

"cust_mobile"

/>

<

/class

>

<

<

?xml version=

"1.0" encoding=

"utf-8"

?>

<

!doctype hibernate-configuration public

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

"">

<

!-- 連線資料庫的基本引數 --

>

"hibernate.connection.driver_class"

>com.mysql.jdbc.driver<

/property>

"hibernate.connection.url"

>jdbc:mysql:

//localhost/hibernate?useunicode=

true

&characterencoding=utf-

8<

/property>

"hibernate.connection.username"

>root<

/property>

"hibernate.connection.password"

>root<

/property>

<

!-- 配置hibernate的方言 --

>

"hibernate.dialect"

>org.hibernate.dialect.mysqldialect<

/property>

<

!-- 可選配置==

====

====

====

==--

>

<

!-- 列印sql --

>

"hibernate.show_sql"

>

true

<

/property>

<

!-- 格式化sql --

>

"hibernate.format_sql"

>

true

<

/property>

<

!-- 自動建立表 --

>

"hibernate.hbm2ddl.auto"

>update<

/property>

<

!-- 對映檔案的引入 --

HIbernate的環境搭建和理解

3.lib資料夾下requred資料夾就是我們所用到的jar包 最後不要忘了匯入jdbc 5.進入幫助手冊,複製 6將 複製到我們建立的檔案裡面 7.配置幾個地方 告訴資料庫要連線,然後連線哪個資料庫 8.再在你的跟資料庫中物件相對應的類的包下面建立.hbm.xml檔案 建立對映檔案,是hibern...

hibernate框架環境搭建

一.概述 hibernate框架是作用於dao層的,實現對資料的持久化儲存.通過物件導向的方式運算元據庫.二.hibernate框架的搭建 1.導包 lib目錄下的required資料夾下的所有jar包.mysql驅動包.2.建立資料庫於表.3.建立實體類.4.建立實體對映檔案 以crm練習cust...

Hibernate目錄結構以及環境搭建

上篇部落格,概述了一下hibernate,今天這篇繼續說說hibernate包含的各個包的含義,以及對hibernate環境的搭建。hibernate包,解壓看到裡邊有若干個資料夾,這些東東是都是什麼,有神馬作用呢?看下圖 上圖是撿著重要的目錄給重新命名了。由上至下依次表示 api 文件 doc 操...