我有一個JavaEE休眠項目,休眠自動創建數據庫
而我使用MySQL作爲數據庫。
我想,當我第一次運行該項目,將程序自動創建數據庫。
這是我hibernate.cnf.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="connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="connection.url">jdbc:mysql://localhost/InternetProject</property>
<property name="connection.username">root</property>
<property name="connection.password"></property>
<property name="connection.pool_size">10</property>
<property name="dialect">org.hibernate.dialect.MySQLDialect</property>
<property name="hibernate.hbm2ddl.auto">update</property>
<property name="show_sql">true</property>
<mapping class="entities.Business" />
<mapping class="entities.Coupon" />
<mapping class="entities.User" />
<mapping class="entities.LastLogin" />
</session-factory>
</hibernate-configuration>
當我第一次運行另一臺計算機上這個項目,我怎樣才能使數據庫InternetProject
產生的呢?
根據配置文件,它可能已經做到這一點,我不知道它.. 在此先感謝,:)
謝謝!這是什麼時候和' update ''之間的區別? –
Billie
創建將創建一個新的架構和更新將查找架構並執行更新 – tesnik03
我可以使用'create'而不是'udpate',或者我應該同時使用? – Billie