我使用的是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
据我所知,导入了注释。 任何线索? 感谢
答案 0 :(得分:0)
该插件尚未更新以支持Grails 3 - 您可以在http://plugins.grails.org/找到Grails 3插件 - 您可以尝试自行更新插件或打开问题并询问作者是否计划更新它以支持Grails 3。