问题描述
我正在将groovy应用程序中的mongoDB迁移到PostgreSQL。我是groovy平台的新手。在其中一个groovy文件中它们是:
静态mapWith =mongo
我完全不清楚这是什么意思。根据
$ b
mapWith
我也经历了这个问题
我知道在我的grails应用程序中,
静态mapWith =mongo
可能使用mongoDB插件。我不知道我是否正确。那么我需要为这个PostgreSQL迁移行做些什么?
通常你必须删除这行,就像SQL基于GORM的默认值是好的
I am working on migration of mongoDB to PostgreSQL on groovy application. I am new to groovy platform. In one of the groovy file their is :
static mapWith = "mongo"
I am exactly not clear what does it means. According to http://grails.github.io/grails-doc/3.0.x/ref/Domain%20Classes/mapWith.html
mapWith
I also went through this question Remove simpledb mapWith by meta programming in dev mode
and I got an idea that in my grails application,
static mapWith = "mongo"
might be using mongoDB plugin. I don't know I am correct or not. So what does I need to do with this line for PostgreSQL migration?
Usually you have to remove the line, as for SQL-based GORM-ing the defaults are fine
这篇关于从MongoDB迁移到PostgreSQL Groovy应用程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!