解决集体诉讼程序,无法找到注释的类



我正在使用Grails 3.1.9和Intellj 2017,我想使用插件:

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-您可以在http://plugins.grails.org/--发行并询问作者是否计划将其更新以支持Grails3。

来源位于https://github.com/erickmorales3/action-logging

最新更新