Pergunta

Eu estou tentando criar uma restrição de um costume. Eu coloquei a lógica em um serviço:

class RegExpManagerService {

    boolean transactional = false
    def messageSource

    def lookupRegexp(regExpression,Locale locale) {

       def pattern = messageSource.getMessage( regExpression,null,locale )
       return pattern
    }

    def testRegexp(regExpression,text,Locale locale) {
       return text ==~ lookupRegexp(regExpression,locale)
    }
}

e tentou injetá-lo no meu controlador de domínio:

class Tag extends IbidemBaseDomain {

    def regExpManagerService
    static hasMany=[itemTags:ItemTag]
    static mapping = {
        itemTags fetch:"join"
    }

    //Long id
    Date dateCreated
    Date lastUpdated
    String tag
    // Relation
    Tagtype tagtype
    // Relation
    Customer customer
    // Relation
    Person updatedByPerson
    // Relation
    Person createdByPerson

    static constraints = {
        dateCreated(nullable: true)
        lastUpdated(nullable: true)
        tag(blank: false,validator: {val,obj ->
                regExpManagerService.testRegexp(obj.tagtype.regexpression,val,local)
        })
        tagtype(nullable: true)
        customer(nullable: true)
        updatedByPerson(nullable: true)
        createdByPerson(nullable: true)
    }
    String toString() {
        return "${tag}" 
    }
}

Quando a restrição é executado eu recebo este erro:

2009-08-24 18:50:53,562 [http-8080-1] ERROR errors.GrailsExceptionResolver  - groovy.lang.MissingPropertyException: No such property: regExpManagerService for class: org.maflt.ibidem.Tag
org.codehaus.groovy.runtime.InvokerInvocationException: groovy.lang.MissingPropertyException: No such property: regExpManagerService for class: org.maflt.ibidem.Tag
Foi útil?

Solução

O encerramento restrições é estático, por isso não pode ver o campo de instância 'regExpManagerService'. Mas você tem o objeto que está sendo validado para que você possa acessá-lo de que:

   tag(blank: false,validator: {val,obj ->
      obj.regExpManagerService.testRegexp(obj.tagtype.regexpression,val,local)
   })
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top