Scala eclipse 插件问题
我安装了scala eclipse插件,但是它让我很恼火
它无法正确编译,它表明以下语句编译错误
job setMapperClass classOf[ASPMapReduce.Map]
类型不匹配;找到:java.lang.Classcom.ebay.twitch.ASPMapReduce.Map 需要:java.lang.Class[_ <: org.apache.hadoop.mapreduce.Mapper]
但实际上 ASPMapReduce.Map 实际上是 org.apache.hadoop.mapreeuce.Mapper 的子类 我可以使用maven编译它成功。但eclipse总是告诉我编译错误
scala eclipse插件出了什么问题?顺便说一句,我将 Scala IDE 2.0.0-beta4 与 Scala 2.9.0.final 用于 Eclipse 3.6
I install the scala eclipse plugin, but it make me annoyed
It cannot compile correctly, it indicate compiling error for the following statement
job setMapperClass classOf[ASPMapReduce.Map]
type mismatch; found : java.lang.Classcom.ebay.twitch.ASPMapReduce.Map required: java.lang.Class[_ <:
org.apache.hadoop.mapreduce.Mapper]
But actually ASPMapReduce.Map is really a sub class of org.apache.hadoop.mapreeuce.Mapper
And I can use maven to compile it succesffuly. but eclipse always tell me the compiling error
What's wrong with the scala eclipse plugin ? BTW I use the Scala IDE 2.0.0-beta4 with Scala 2.9.0.final for Eclipse 3.6
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的问题似乎与 这个。这个问题产生了 这张票针对 Scala。
更新:此错误已在 Scala 2.9.1 RC2 中修复。
您可以通过使用 Scala 2.8.1 (boo) 来解决该问题,或者看起来很愚蠢,在作业之前定义 Mapper。编译如下:
Your question appears to have the same root cause as this one. That question spawned this ticket against Scala.
Update: This bug is fixed in Scala 2.9.1 RC2
You can workaround the problem by using Scala 2.8.1 (boo) or, silly as it seems, defining the Mapper before the Job. The following compiles: