0

我正在尝试学习 MongoDB,但在使用嵌入式域时遇到了麻烦。我的应用程序有一个问题,其中可以包含 0 个选项:

class Question {

    ObjectId id
    String text

    List<Option> optionList = []
    static embedded = ['optionList']
}

class Option {
    ObjectId id

    String text
    static belongsTo = [question: Question]
}

现在,当我想请求使用以下 2 个选项保存问题时:

void testSave() {
    QuestionController questionController = new QuestionController()
    questionController.request.parameters =
        [
                "text": "test question",
                "optionList[0].text": "a",
                "optionList[1].text": "b"
        ]
    questionController.save()
}

这会引发异常:

Invalid property 'optionList[0]' of bean class [groovy.lojzatran.anketa.Question]: Index of out of bounds in property path 'optionList[0]'; nested exception is java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
org.springframework.beans.InvalidPropertyException: Invalid property 'optionList[0]' of bean class [groovy.lojzatran.anketa.Question]: Index of out of bounds in property path 'optionList[0]'; nested exception is java.lang.IndexOutOfBoundsException: Index: 0, Size: 0

当我使用静态 hasMany 将关系更改为一对多时,效果很好。

任何人都可以帮助我吗?

谢谢

4

1 回答 1

2

替换这一行:

List<Option> optionList = []

List<Option> optionList =  new org.springframework.util.AutoPopulatingList<Option>(Option)
于 2012-08-06T19:51:56.067 回答