我正在开发一个使用Grails 2.3.7(使用Maven)和Java 7的遗留项目,我必须添加一个MongoDB数据库的连接,同时保留现有的Hibernate数据库。
我已将以下内容添加到 pom.xml 文件中:
<dependency>
<groupId>org.grails.plugins</groupId>
<artifactId>mongodb</artifactId>
<type>zip</type>
<version>3.0.2</version>
</dependency>
这是 BuildConfig.groovy 文件:
plugins {
compile ':mongodb:3.0.2'
compile 'org.grails.plugins:mongodb:3.0.2'
}
(无论有没有编译'org.grails.plugins:mongodb:3.0.2'行,我都试过了)
在 DataSource.groovy 文件中,我按如下方式配置了数据库连接:
grails {
mongodb {
host = "xxx.xxx.xxx.xxx"
port = "27017"
databaseName = "db"
username = "user"
password = "pass"
}
}
并且连接本身似乎正在工作,因为如果我在那里更改任何值,Grails应用程序甚至都不会启动。
然后我创建了一个简单的Domain类, Thingy.groovy :
class Thingy {
String identifier
String description
static mapWith = "mongo"
static constraints = {
}
}
现在,当我启动应用程序时,对该类方法的任何调用都会抛出IllegalStateException:"Method on class [Thingy] was used outside of a Grails application. If running in the context of a test using the mocking API or bootstrap Grails correctly."
。但是,如果在同一个地方我调用使用其他数据源的旧Domain类的任何方法,它们就像魅力一样。
此外,在启动服务器时,我得到另一个我认为可能相关的异常,但我不知道如何处理它:ERROR - Error configuring dynamic methods for plugin [mongodb:3.0.2]: org/grails/datastore/mapping/query/api/BuildableCriteria
java.lang.NoClassDefFoundError: org/grails/datastore/mapping/query/api/BuildableCriteria
。
我也尝试过使用MongoDB插件3.0.3,但结果相同。
答案 0 :(得分:1)
这个答案https://stackoverflow.com/a/35710495/451420给了我一个线索。我还必须手动更新grails-datastore-core
和grails-datastore-gorm
版本:
<dependency>
<groupId>org.grails</groupId>
<artifactId>grails-datastore-gorm</artifactId>
<version>3.1.4.RELEASE</version>
</dependency>
<dependency>
<groupId>org.grails</groupId>
<artifactId>grails-datastore-core</artifactId>
<version>3.1.4.RELEASE</version>
</dependency>
如果它对其他人有帮助,我通过查看mongodb插件(https://repo.grails.org/grails/plugins/org/grails/plugins/mongodb/3.0.3/mongodb-3.0.3.pom)的POM文件中的<dependencies>
找到了要使用的版本