hibernate hbm2ddl创建属性不起作用

时间:2013-06-28 18:54:20

标签: hibernate

我有一个带有@entity注释的简单UserDetails类,在我的hibernate配置文件中,hbm2ddl设置为create但在运行时显示表UserDetails不存在。创建表后,它工作正常。为什么hibernate不会自动创建表,即使hbm2ddl设置为创建? 的hibernate.cfg.xml

<hibernate-configuration>
<session-factory>

        <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
        <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/shammu</property>
        <property name="hibernate.connection.username">root</property>
        <property name="hibernate.connection.password">root</property>


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

        <property name="cache.provider_class">org.hibernate.cache.NocacheProvider</property>

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

        <property name="hibernate.hbm2ddl">create</property>

        <mapping class="org.shammu.UserDetails" />

</session-factory>
</hibernate-configuration>

2 个答案:

答案 0 :(得分:1)

更新以下属性:

<property name="hibernate.hbm2ddl.auto">create</property>

请参阅下面的所有属性:

http://docs.jboss.org/hibernate/orm/3.3/reference/en/html/session-configuration.html

答案 1 :(得分:0)

您使用了错误的媒体名称。 做到这一点

属性名称=&#34; hbm2ddl.auto&#34;