我在我的网络应用程序中添加了一个新的Domain类(表)。一切都可以在本地找到,但是当我尝试部署应用程序时,我遇到了这个错误: URI:/ myApp / MyDomain / list 类:org.h2.jdbc.JdbcSQLException 消息:“列”THIS_.TC_STATE_DATE“未找到; SQL语句:选择此...”
域:
class MyDomain{
String param1
String param2
Date tcStateDate
String toString(){
return "${param1}"
}
static constraints = {
param2(nullable:true,blank:true)
}
}
DataSource.groovy中:
dataSource {
pooled = true
driverClassName = "org.h2.Driver"
username = "sa"
password = ""
}
hibernate {
cache.use_second_level_cache = true
cache.use_query_cache = false
cache.region.factory_class = 'net.sf.ehcache.hibernate.EhCacheRegionFactory'
}
environments {
development {
dataSource {
dbCreate = "update"//"create-drop" // one of 'create', 'create-drop', 'update', 'validate', ''
url = "jdbc:h2:mem:myApp_prodDb;MVCC=TRUE"
}
}
test {
dataSource {
dbCreate = "update"
url = "jdbc:h2:myApp_testDb;MVCC=TRUE"
}
}
production {
dataSource {
dbCreate = "update"
url = "jdbc:h2:myApp_prodDb;MVCC=TRUE"
pooled = true
properties {
maxActive = -1
minEvictableIdleTimeMillis=1800000
timeBetweenEvictionRunsMillis=1800000
numTestsPerEvictionRun=3
testOnBorrow=true
testWhileIdle=true
testOnReturn=true
validationQuery="SELECT 1"
}
}
}