当我使用
Java 8
方法引用双冒号运算符(:)与新的运算符(例如MyType :: new)时,我在Spring工具套件(STS)的
Eclipse中得到这个
错误:
The type org.eclipse.jdt.annotation.NonNull cannot be resolved. It is indirectly referenced from required .class files
如何摆脱这个错误?
Stephan Herrmann的
评论中提供了
错误描述.打开
Eclipse issue打开这个问题更加
用户友好.
解决方案是包括以下依赖:
<dependency>
<groupId>org.eclipse.jdt</groupId>
<artifactId>org.eclipse.jdt.annotation</artifactId>
<version>2.0.0</version>
</dependency>
原文链接:https://www.f2er.com/java/126525.html