如何使用aspectj代理删除cantFindType警告?

时间:2014-06-27 12:38:15

标签: aspectj

使用aspectj代理,我收到

[Xlint:cantFindType]
[Loader@203d1d93] error can't determine whether missing type org.slf4j.Logger is an instance of java.net.InetAddress
when weaving type org.eclipse.jetty.util.log.Slf4jLog
when weaving classes
when weaving

我如何删除此警告?

由于

1 个答案:

答案 0 :(得分:2)

将META-INF / aop.xml文件与

一起使用
<aspectj>

    <!--<weaver options="-verbose ">-->
    <weaver options="-warn:none -Xlint:ignore">
    </weaver>

</aspectj>