2017-09-10 15 views
0

내가 Grails의 3.1.9 및 IntellJ 2017, 을 사용하고 내가 플러그인을 사용하려면위한 클래스를 찾을 수 없습니다 :해결 클래스 ActionLogging, 주석

compile "org.grails.plugins:action-logging:1.1.1" 

내가 올바르게 다운로드합니다.

package com.test 

import org.mirzsoft.grails.actionlogging.annotation.* 

class TestController { 

    @ActionLogging 
    @SpringUserIdentification 
    def index() { 

     } 
    } 
} 

내가 다운로드 한 패키지를 볼 수 있지만 내가 컴파일하려고하면, 나는이 메시지를 가지고 : 수동 말했듯이 나는 내 컨트롤러에서 추가 수입

: 34: unable to resolve class ActionLogging , unable to find class for annotation 
@ line 34, column 5. 
     @ActionLogging 

주석을 , 내가 아는 한. 어떤 단서를 ? 덕분에 플러그인이 Grails의 3을 지원하도록 업데이트되지 않았 음을

답변