gorm-mongodb

    0熱度

    1回答

    我將我的grails項目從2.4.4遷移到3.2.0。所以我也將我的gorm-mongodb插件遷移到6.0.0。以前版本的mongo i 2.4.12和當前版本是3.2.7。 當我將mongo版本從2.4.12遷移到3.2.7時,在我的域類中發生異常。 我有兩個領域類: class ABC implements Comparable, Serializable, Validateable {

    1熱度

    1回答

    我正在將一個相當大的應用程序升級到mongodb:5.0.1.RELEASE來自mongodb:3.0.2,並且在嘗試grails package時收到以下異常 Caused by: java.lang.NoClassDefFoundError: org/grails/compiler/gorm/GormEntityTransformation at org.codehaus.groov

    0熱度

    1回答

    我正在用grails 3和mongo構建一個REST api。當我需要編組更深的對象圖時,遇到了一個問題。 我有以下結構域: class Category extends Resource { /* other fields */ Category parent } class Product extends Resource { /* other field

    0熱度

    1回答

    --- grails: mongodb: host: "localhost" port: 27017 databaseName: "dbName" username: "user" password: "encryptedPassword" --- 如何解密密碼是用來做連接的MongoDB之前加密的密碼?原因是我不需要在

    20熱度

    2回答

    我正在使用Criteria和預測來獲取我的帳戶域上的標籤列表。就像這樣: def tags = Account.createCriteria().list { projections { property("tags") } } 我的帳戶域: class Account { static mapWith = "mongo" List<Tag> tags

    0熱度

    1回答

    在我的Grails 3.2.6應用程序我有2類: abstract class Base { static mapping = { tablePerHierarchy false } } 和 class Child extends Base { static mapping = { collection 'child' } }

    0熱度

    1回答

    我正在使用grails 2.4.4。當我將mongodb插件從3.0.1升級到最新的3.0.2時,它無法找到並安裝一個jar。它的投擲: | Error Resolve error obtaining dependencies: Failed to read artifact descriptor for org.grails:grails-datastore-gorm-plugin-suppor

    0熱度

    1回答

    我的項目建立的MongoDB集合是建立在GMONGO框架,所有的結構域具有屬性ID作爲string.So大盤框架的工作將建立的MongoDB的集合與_id屬性,當應用程序是創建。 在用戶界面中有一個限制來檢索_id.So在服務中,「_id」被重寫爲「id」來解決問題。 默認情況下我們是否可以創建帶有「id」的集合而不是「_id」?

    0熱度

    3回答

    我從頭開始創建應用程序,當我啓動應用程序時,出現以下錯誤。我的MongoDB的版本是2.6.1 Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'mongo': Invocation of init method failed; nested exce

    0熱度

    1回答

    我有這樣兩個簡單的領域類: class Isa95EquipmentSpecification { String equipmentClass String equipment String description Float quantity String quantityUOM List<Isa95EquipmentSpecific