Hibernate没有相应地更新我的数据库架构

时间:2016-06-17 14:02:21

标签: java hibernate

在我开发我的应用程序时,我不断对我的模型进行更改,我希望hibernate能够跟踪这些更改,但它并没有。这是我的代码段

<bean id="sessionFactory"
        class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
        <property name="dataSource" ref="dataSource" />

        <property name="packagesToScan">
            <list>
                <value>np.com.xxx.model</value>
            </list>
        </property>
        <property name="hibernateProperties">
            <props>
                <prop key="hibernate.hbm2ddl.auto">update</prop>
                <prop key="hibernate.dialect">${hibernate.dialect}</prop>
                <prop key="hibernate.show_sql">false</prop>
            </props>
        </property>
    </bean>

您可以注意到应该执行更新过程

的此属性
<prop key="hibernate.hbm2ddl.auto">update</prop>

如何根据模型的当前状态确保hibernate相应地更新我的数据库。

0 个答案:

没有答案