第乙個HIbernate簡單運用

2021-06-08 06:00:17 字數 1133 閱讀 8222

環境: jdk6.0 + mysql5.0 +hibrenate3.6

1:搭建環境

匯入 hibernate_home/lib/required   、 bytecode 、 jpa 下的 所有jar包

2:編寫hibernate.cfg.xml 檔案

com.mysql.jdbc.driver

jdbc:mysql://localhost/hibernate

root

52ww

org.hibernate.dialect.mysqlinnodbdialect

true

gbkupdate

2:編寫 po 類

package zhorj.hibernate.test;

public class news

public void setid(integer id)

public string gettitle()

public void settitle(string title)

public string getcontent()

public void setcontent(string content)

}

3:編寫配置對應的 news.hbm.xml 檔案

<?xml version="1.0" encoding="gb2312"?>			

4:編寫測試類,載入配置檔案並測試

package zhourj.hibernate.manager;

import org.hibernate.session;

import org.hibernate.sessionfactory;

import org.hibernate.transaction;

import org.hibernate.cfg.configuration;

import zhorj.hibernate.test.news;

public class newmanager

}

第乙個hibernate程式(xml版本)

1.在使用hibernate3.3 的時候使用的包的配置情況 a.b color orange hibernate3.jar color b 這是hibernate的核心包。b.在lib資料夾中的required包中所用的jar包 img c.關於日誌的包,我們需要slf4j的日誌包,需要注意的是需...

第乙個hibernate小程式總結

hibernate環境的搭建 3.2.5 新建乙個 j a工程,倒入hibernate的jar包 copyhibernate.cfg.xml檔案到專案中 首先先給出主要 在此處一些j a類就省略,主要是兩個檔案的配置 需要在oracle資料庫中建立對應的表usertest 建表語句 create t...

python第乙個程式設計 第乙個 Python 程式

簡述 安裝完 python 後,windows 中 開始選單或安裝目錄下就會有 idle 開發 python 程式的基本 ide 整合開發環境 幫助手冊 模組文件等。linux 中 只需要在命令列中輸入 python 命令即可啟動互動式程式設計。互動式程式設計 互動式程式設計不需要建立指令碼檔案,是...