我尝试使用 MongoDB 2.0.6 替换 MySQL 5.5.25 来测试 Grails 2.1 应用程序,但遇到了一些奇怪的问题。
使用 MongoDB 而不是 MySQL 时的问题:
使用脚手架时,我无法通过使用静态约束来排序字段
当我将 inList 指定为约束时,在使用 MySQL 后端时会出现一个下拉列表,但在使用 MongoDB 后端时会出现一个字段。
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.groovy和BuildConfig.groovy的更改。
有没有我遗漏的配置项?
我确实看到有人在这个Nabble 论坛帖子中提到字段排序可能是 MongoDB 的一个问题。
但是,这篇文章没有任何细节。
此外,我不明白后端数据库引擎为什么或如何影响使用脚手架时视图的呈现方式。具体来说,页面上的排序和下拉 vs 文本字段。
我原以为这将来自域类的字段类型和约束。
以前在 MongoDB 中使用 Grails+Scaffolding 时,有没有人遇到过这种奇怪的行为?有谁知道修复或有任何见解?
非常感谢您,我很感激。