gpt4 book ai didi

java - 如何让hibernate自动生成数据库?

转载 作者:行者123 更新时间:2023-12-01 12:52:14 25 4
gpt4 key购买 nike

我的 hibernate.cfg.xml 是:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">

<hibernate-configuration>
<session-factory>
<property name="hibernate.dialect">org.hibernate.dialect.MySQL5Dialect</property>

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

<property name="hibernate.connection.url">jdbc:mysql://localhost:3306/hibernateSimpleDB</property>
<property name="hibernate.connection.username">root</property>
<property name="hibernate.connection.password"></property>

<property name="transaction.factory_class">org.hibernate.engine.transaction.internal.jdbc.JdbcTransactionFactory</property>

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

<property name="hibernate.cache.use_second_level_cache">true</property>

<property name="hibernate.cache.region.factory_class">org.hibernate.cache.ehcache.EhCacheRegionFactory</property>

<property name="current_session_context_class">thread</property>

<mapping resource="com/masterhibernate/SimpleHibernateDemo/Person.hbm.xml"/>
</session-factory>
</hibernate-configuration>

我希望 hibernate 自动创建数据库 hibernateSimpleDB 。但它并没有这样做。

我知道它会自动创建表,但我想自动创建数据库和表。

可能吗?

最佳答案

看看这个 http://mojo.codehaus.org/hibernate3-maven-plugin/hbm2ddl-mojo.html

并创建表格。

检查此 Hibernate 属性。

             <property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.HSQLDialect</prop>
<prop key="hibernate.hbm2ddl.auto">create</prop>
<prop key="hibernate.show_sql">true</prop>
</props>
</property>

这就是神奇的一行:

                        <prop key="hibernate.hbm2ddl.auto">create</prop>

关于java - 如何让hibernate自动生成数据库?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24135509/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com