Hibernate 配置串連MySQL/SQLServer/Oracle資料庫

來源:互聯網
上載者:User

標籤:style   blog   http   color   使用   os   

用Hibernate配置串連資料庫可以方便我們對POJO的操作,節省了很多時間和代碼。下面就分別說明串連不同資料庫需要在hibernate.cfg.xml做的配置。

需要資料庫驅動包可以點擊這裡下載:資料庫Jar包:http://pan.baidu.com/s/1jGKEEY6  密碼:okq0

1、Hibernate串連MySQL資料庫

 1 <?xml version=‘1.0‘ encoding=‘UTF-8‘?> 2 <!DOCTYPE hibernate-configuration PUBLIC 3           "-//Hibernate/Hibernate Configuration DTD 3.0//EN" 4           "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"> 5 <!-- Generated by MyEclipse Hibernate Tools.                   --> 6 <hibernate-configuration> 7 <session-factory> 8     <!-- 配置JDBC串連屬性 --> 9     <property name="myeclipse.connection.profile">10         com.mysql.jdbc.Driver11     </property>12     <property name="connection.url">13         jdbc:mysql://localhost:3306/basehibernate14     </property>15     <property name="connection.username">root</property>16     <property name="connection.password">sa</property>17     <property name="connection.driver_class">18         com.mysql.jdbc.Driver19     </property>20     <property name="dialect">21         org.hibernate.dialect.MySQLDialect22     </property>23 24     <!-- 自動建表 -->25     <property name="hbm2ddl.auto">update</property>26     <!-- 自動認可,不加的話可能會出現insert之後資料庫無資料 -->27     <property name="connection.autocommit">true</property>28 29     <!-- 使用Hibernate Annotation的POJO類 -->30     <mapping class="com.basehibernate.pojo.Department" />31     <mapping class="com.basehibernate.pojo.Employee" />32 </session-factory>33 </hibernate-configuration>

2、Hibernate串連Oracle資料庫

 1 <?xml version=‘1.0‘ encoding=‘UTF-8‘?> 2 <!DOCTYPE hibernate-configuration PUBLIC 3           "-//Hibernate/Hibernate Configuration DTD 3.0//EN" 4           "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"> 5 <!-- Generated by MyEclipse Hibernate Tools.                   --> 6 <hibernate-configuration> 7 <session-factory> 8     <!-- 配置JDBC串連屬性 --> 9     <property name="connection.driver_class">10          oracle.jdbc.driver.OracleDriver11     </property>12     <property name="connection.url">13         jdbc:oracle:thin:@localhost:1521:chanshuyi14     </property>15     <property name="myeclipse.connection.profile">oracle</property>16     <property name="connection.username">csy</property>17     <property name="connection.password">csy</property>18     <property name="dialect">org.hibernate.dialect.Oracle9Dialect</property>19 20     <!-- oracle特有的提交更改 -->21     <property name="defaultAutoCommit">true</property> 22     <!-- 自動建表 -->23     <property name="hbm2ddl.auto">auto</property>24     <property name="show_sql">true</property>  25     <!-- 自動認可,不加的話可能會出現insert之後資料庫無資料 -->26     <property name="connection.autocommit">true</property>27     28     <!-- 使用Hibernate Annotation的POJO類 -->29     <mapping class="com.xinpinv.pojo.Product" />30     <mapping class="com.xinpinv.pojo.BitInfo" />31 </session-factory>32 </hibernate-configuration>

3、Hibernate串連Oracle資料庫

(MARK 待寫)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.