1

我正在使用 Grails 3.0.9

应用程序.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  

在控制台上grails run-app没有错误但在数据库中没有创建表。我正在使用的域类

DataRequest { 
String token;
 static constraints = { }
 }
4

1 回答 1

1

在 Windows 上,我的一个朋友也面临同样的问题。他通过使用 cygwin(来自 cygwin 的 grails run-app)设置 GRAILS-HOME 来修复它,它适用于他。希望它可以帮助你。

于 2016-04-01T05:43:33.263 回答