這次帶給大家Hibernate的配置,Hibernate配置的注意事項有哪些,下面就是實戰案例,一起來看一下。
資料庫:Mysql
設定檔名Hibernate.cfg.xml
<?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><!-- SessionFactory --> <session-factory> <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property> <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/database</property> <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property> <property name="hibernate.connection.username">username</property> <property name="hibernate.connection.password">password</property> <property name="show_sql">true</property> <property name="hbm2ddl.auto">update</property> <mapping resource="com/troyforever/mvc/bean/Example.hbm.xml" /> </session-factory></hibernate-configuration>
相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
相關閱讀:
#以上是Hibernate的配置的詳細內容。更多資訊請關注PHP中文網其他相關文章!