内蔵データベースを " update
" に設定できません。アプリを終了すると、「 」がまだあるかのように、常にクリアされcreate-drop
ます。
SQL データベースや Tomcat サーバーの設定方法を知らない友人とプロジェクトを共有できるように、私は MySQL データベースを使用していましたが、組み込みデータベースに戻したことを知っておくと役立つ場合があります。
これが私のDataSource.groovy
ファイルです:
dataSource {
pooled = true
driverClassName = "org.h2.Driver"
username = "sa"
password = ""
}
hibernate {
cache.use_second_level_cache = true
cache.use_query_cache = true
cache.region.factory_class = 'net.sf.ehcache.hibernate.EhCacheRegionFactory'
}
// environment specific settings
environments {
development {
dataSource {
dbCreate = "update" // one of 'create', 'create-drop', 'update', 'validate', ''
url = "jdbc:h2:mem:myAppDevDb;MVCC=TRUE"
}
}
test {
dataSource {
dbCreate = "update"
url = "jdbc:h2:mem:myAppTestDb;MVCC=TRUE"
}
}
production {
dataSource {
dbCreate = "update"
url = "jdbc:h2:myAppProdDb;MVCC=TRUE"
pooled = true
properties {
maxActive = -1
minEvictableIdleTimeMillis=1800000
timeBetweenEvictionRunsMillis=1800000
numTestsPerEvictionRun=3
testOnBorrow=true
testWhileIdle=true
testOnReturn=true
validationQuery="SELECT 1"
}
}
}
}
どんな助けでも大歓迎です。前もって感謝します。