5

我尝试使用 MongoDB 2.0.6 替换 MySQL 5.5.25 来测试 Grails 2.1 应用程序,但遇到了一些奇怪的问题。

使用 MongoDB 而不是 MySQL 时的问题:

  1. 使用脚手架时,我无法通过使用静态约束来排序字段

  2. 当我将 inList 指定为约束时,在使用 MySQL 后端时会出现一个下拉列表,但在使用 MongoDB 后端时会出现一个字段。

  3. blank=false指定约束的字段上没有 *(星号) 。

域类

package study

class Student {

    String login
    String firstName
    String lastName
    String gender
    Boolean active

    Date dateCreated
    Date lastUpdated

    static constraints = {
        login()
        firstName(blank: false)
        lastName(blank: false)
        gender(inList: ['M', 'F'])
        active()
    }

}

控制器

package study

class StudentController {

    def scaffold = true
}

DataSource.groovy(MySQL 的东西被注释掉了):

grails {
  mongo {
    host = "dev-linux"
    port = 27017
    username = "study"
    password= "********"
    databaseName = "study"
  }
}

//dataSource {
//    pooled = true
//    driverClassName = "com.mysql.jdbc.Driver"
//    dialect = "org.hibernate.dialect.MySQL5InnoDBDialect"
//    username = "study"
//    password = "********"
//    dbCreate = "create-drop" // one of 'create', 'create-drop','update'
//    url = "jdbc:mysql://dev-linux:3306/study"
//
//}
//hibernate {
//    cache.use_second_level_cache = true
//    cache.use_query_cache = true
//    cache.provider_class = "net.sf.ehcache.hibernate.EhCacheProvider"
//}

BuildConfig.groovy(显示的插件部分是我将 MongoDB 替换为 MySQL 的所有内容,该文件的其余部分是 Grails 创建的默认值)

plugins {
      // build ":hibernate:$grailsVersion"
      // compile ":mysql-connectorj:5.1.12"

      compile ":mongodb:1.0.0.GA"
      build ":tomcat:$grailsVersion"

}

我对 MongoDB 和 MySQL 所做的唯一更改是对上面显示的DataSource.groovyBuildConfig.groovy的更改。

有没有我遗漏的配置项?

我确实看到有人在这个Nabble 论坛帖子中提到字段排序可能是 MongoDB 的一个问题。

但是,这篇文章没有任何细节。

此外,我不明白后端数据库引擎为什么或如何影响使用脚手架时视图的呈现方式。具体来说,页面上的排序和下拉 vs 文本字段。

我原以为这将来自域类的字段类型和约束。

以前在 MongoDB 中使用 Grails+Scaffolding 时,有没有人遇到过这种奇怪的行为?有谁知道修复或有任何见解?

非常感谢您,我很感激。

4

1 回答 1

2

MongoDB 的脚手架可以工作,问题是如果你只是安装 mongodb 插件,grails 会看到模棱两可的域映射和类似的错误弹出。您需要:

  • 像这样删除休眠插件:

    grails uninstall-plugin hibernate
    

    还要从 BuildConfig.groovy 中删除这些行:

    runtime ":database-migration:1.1"
    runtime ":hibernate:$grailsVersion"
    
  • 通过添加以下行来明确告诉给定域由 Mongo 持久化:

    static mapWith="mongo"
    
于 2012-08-19T21:30:13.683 回答