2
我運行我的網站,它會在數據庫中生成表格。我甚至可以在你的網站的數據庫中註冊,並給出一個選擇顯示它已經註冊。但是,如果我停止服務器,並在MySQL中查看錶,該表就消失了。爲什麼在休眠時創建的表在停止服務器後被刪除?
持久看起來是這樣的:
<?xml version="1.0" encoding="UTF-8"?>
<persistence xmlns="http://java.sun.com/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd"
version="2.0">
<persistence-unit name="nome">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
<class>br.com.nome.model.Tabela</class>
<properties>
<property name="javax.persistence.jdbc.driver"
value="com.mysql.jdbc.Driver" />
<property name="javax.persistence.jdbc.url"
value="jdbc:mysql://localhost/bd" />
<property name="javax.persistence.jdbc.user" value="root" />
<property name="javax.persistence.jdbc.password" value="senha" />
<property name="hibernate.dialect"
value="org.hibernate.dialect.MySQL5InnoDBDialect" />
<property name="hibernate.show_sql" value="true" />
<property name="hibernate.format_sql" value="true" />
<property name="hibernate.hbm2ddl.auto" value="update" />
</properties>
</persistence-unit>
</persistence>
在整個源代碼中搜索字符串「hbm2ddl.auto」,並查看該屬性的值是否以編程方式設置。 –
是的,就是這樣,是在春季成立的,下降 –
嗯,這個問題可能仍然是封閉的,因爲它對你自己的情況太具體了,但我會加上這個作爲答案,這樣如果問題確實如此沒有關閉,它會留在那裏爲子孫後代。 –