我正在使用Grails 3.0.9
application.yml:
hibernate:
cache:
queries: false
use_second_level_cache: true
use_query_cache: false
region.factory_class: 'org.hibernate.cache.ehcache.EhCacheRegionFactory'
endpoints:
jmx:
unique-names: true
dataSource:
pooled: true
jmxExport: true
driverClassName: com.mysql.jdbc.Driver
dialect: org.hibernate.dialect.MySQL5InnoDBDialect
username: root
password: 123
environments:
development:
dataSource:
dbCreate: update
driverClassName: com.mysql.jdbc.Driver
url: jdbc:mysql://localhost:3306/blereview?useUnicode=true&characterEncoding=UTF-8
on grails run-app
控制台上没有错误,但数据库中没有创建表。
我正在使用的域类
DataRequest {
String token;
static constraints = { }
}
答案 0 :(得分:1)
在Windows上,我的一个朋友也面临同样的问题。他通过使用cygwin设置GRAILS-HOME来修复它(来自cygwin的grails run-app)并且它适用于他。 希望它可以帮到你。