Hibernate 其它配置

maven

JBoss Nexus: https://repository.jboss.org/nexus/content/groups/public/org/hibernate
Maven Central: http://repo1.maven.org/maven2/org/hibernate/hibernate-core (should update in a couple of days)
SourceForge: https://sourceforge.net/projects/hibernate/files/hibernate4

1.表结构的创建或更新或创建及删除create, create-drop or update

<property name="hbm2ddl.auto">update</property>

 2.SQL语句的展示

<property name="show_sql">true</property>
<property name="format_sql">false</property>

 3.

猜你喜欢

转载自zhengchao123.iteye.com/blog/1871873