3

您好我正在尝试使用其中的对象列表验证对象。根实例来自 JSON 客户端文件。

我创造了这样的东西

@Validateable
class Book {
    String title
    List authors
    static hasMany = [authors : Authors]

    static constraints = {
        authors(nullable:false,validator: { recipients ->
            recipients.every { it.validate() }
        } )     
    }
}

@Validateable
class Author {
    String name
    Integer property

        static constraints = {
        name(nullable:false)    
        property((nullable:false, blank: false))    
    }
}

我正在尝试以这种方式在控制器中验证它:

class BookController {

def manageBook(Book book){
    if (book.validate()) {
        //Do my stuff
    }else{
        // return error
    }
}
}

但它根本不起作用,我在控制台中看到了这个错误:

| Error 2012-05-25 11:26:34,014 [http-bio-8080-exec-1] ERROR errors.GrailsExceptionResolver  - MissingMethodException occurred when processing request: [POST] /BookApp/rest/bookApp/manageBook
No signature of method: org.codehaus.groovy.grails.web.json.JSONObject.validate() is applicable for argument types: () values: []
Possible solutions: wait(), values(). Stacktrace follows:
Message: No signature of method: org.codehaus.groovy.grails.web.json.JSONObject.validate() is applicable for argument types: () values: []
Possible solutions: wait(), values()
   Line | Method
->>  17 | doCall  in dataskaterserver.DeviceSeenWifiData$__clinit__closure1_closure2_closure3
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
|   886 | runTask in java.util.concurrent.ThreadPoolExecutor$Worker
|   908 | run . . in     ''
^   680 | run     in java.lang.Thread

任何人都可以帮助我,拜托..?

4

1 回答 1

1

我找到了解决方案,它在文档中...... http://grails.org/doc/latest/guide/validation.html#validationNonDomainAndCommandObjectClasses

注册 Validateable 类 如果一个类没有用 Validateable 标记,它仍然可以被框架验证。执行此操作所需的步骤是在类中定义静态约束属性(如上所述),然后通过为 Config.groovy@ 中的 grails.validateable.classes 属性分配一个值来告诉框架该类:

grails.validateable.classes = [com.mycompany.myapp.User, com.mycompany.dto.Account]
于 2012-05-25T13:50:53.110 回答