hibernate.cfg.xml

<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPEhibernate-configurationPUBLIC

"-//Hibernate/HibernateConfigurationDTD3.0//EN"

"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">

<hibernate-configuration>

<session-factory>

<!--sql方言-->

<propertyname="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>

<propertyname="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>

<propertyname="connection.url">jdbc:mysql://localhost:3306/genealogy</property>

<propertyname="connection.username">root</property>

<propertyname="connection.password">djcbpl</property>

<!--<propertyname="hbm2ddl.auto">create</property>创建表-->

<propertyname="hbm2dd1.auto">update</property><!--修改该创建的表-->

<!--显示sql语句

<propertyname="show_sql">true</property>-->

<propertyname="connection.autocommit">true</property>

</session-factory>

</hibernate-configuration>

相关推荐