hibernate.cfg.xml 配置
阿新 • • 發佈:2018-12-13
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd"> <hibernate-configuration> <!--表明以下的配置是針對session-factory配置的,SessionFactory是Hibernate中的一個類,這個類主要負責儲存HIbernate的配置資訊,以及對Session的操作 --> <session-factory> <!--配置資料庫的驅動程式,Hibernate在連線資料庫時,需要用到資料庫的驅動程式 --> <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver </property> <!--設定資料庫的連線url:jdbc:mysql://localhost/hibernate,其中localhost表示mysql伺服器名稱,此處為本機, hibernate是資料庫名 --> <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/sxt</property> <!--連線資料庫是使用者名稱 --> <property name="hibernate.connection.username">root</property> <!--連線資料庫是密碼 --> <property name="hibernate.connection.password">root</property> <!--hibernate.dialect 只是Hibernate使用的資料庫方言,就是要用Hibernate連線那種型別的資料庫伺服器。 --> <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect </property> <!-- 列印生成的sql語句 --> <property name="hibernate.show_sql">true</property> <!--指定對映檔案為“hibernate/ch1/UserInfo.hbm.xml” --> <mapping resource="com/sxt/beans/User.hbm.xml" /> </session-factory> </hibernate-configuration>