尝试将 java 隐式转换为 scala 集合时出现 NoSuchMethodError
我开始在代码中收到这种错误:
Message:
java.lang.NoSuchMethodError:scala.collection.JavaConversions
$.asScalaSet(Ljava/util/Set;)Lscala/collection/mutable/Set
然后我看到一个很长的无趣的堆栈跟踪屏幕,它是在这段代码上触发的:
edited.authors.toSeq
其中 authors
是一个 java.lang.Error 。 lang.Set
。有谁知道为什么会发生这种情况?这是运行时失败而不是编译失败。
I started to receive this kind of error in my code:
Message:
java.lang.NoSuchMethodError:scala.collection.JavaConversions
$.asScalaSet(Ljava/util/Set;)Lscala/collection/mutable/Set
and then I see a long screen of stacktrace of uninteresting nature, which is triggered on this piece of code:
edited.authors.toSeq
where authors
is a java.lang.Set
. Does anybody know why is this happening? It's a runtime failure and not a compile one.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您使用的库是通过 2.8.0 运行时的 2.8.1 编译的
You are using a library which has been compiled with 2.8.1 from the 2.8.0 runtime