我试图在我的项目中使用Lombok,我正在使用IntelliJ IDEA 11开发。
我已经安装了IDEA的第三方插件,它似乎工作正常,因为IDEA可以看到所有自动生成的方法/字段。
我有一个使用Slf4j的类。我这样做了注解
import lombok.extern.slf4j.Slf4j;
@Slf4j
public class TestClass
{
public TestClass()
{
log.info("Hello!");
}
}
但是当我构建我的项目编译器吐出:cannot find symbol variable log
。
你能告诉我我错过了什么吗?
更新:结果是RequestFactory注释过程失败。
input files: {com.zasutki.courierApp.server.TestServlet, com.mine.courierApp.server.model.DatastoreObject}
annotations: [javax.inject.Singleton, javax.inject.Inject, lombok.Getter, lombok.Setter, com.googlecode.objectify.annotation.Id, com.googlecode.objectify.annotation.OnSave]
Processor com.google.web.bindery.requestfactory.apt.RfValidator matches [lombok.Getter, com.googlecode.objectify.annotation.Id, javax.inject.Inject, lombok.Setter, com.googlecode.objectify.annotation.OnSave, javax.inject.Singleton] and returns false.
cannot find symbol variable log
有什么解决办法吗?
更新2:也许这不是读者想听到的,但我最终切换到Scala。