標籤: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 待寫)