zoukankan      html  css  js  c++  java
  • scala 遇到过的问题

    1:在我安装完scala的插件后,在打开方法的实现类(open implementactions)的时候,抛出这个异常,后来发现这个异常是因为我的scala的插件跟我eclipse版本不兼容导致的。

    An error occurred while searching for implementations of method 'getFinishOrdCustByOrderCode'. See error log for details.
    org.eclipse.jdt.internal.core.hierarchy.HierarchyType.<init>(Lorg/eclipse/jdt/core/IType;[CI[C[[C)V
    解决办法:
    我的eclipse版本是
     
    version:Mars.2 release (4,5,2)
    新下载的scala版本是
    4.0.0 release for scala 2.11.6
    再次安装没有上面问题可以解决
     
     
     
    2:在写完scala代码的后,出现异常错误(缺少依赖的jar)
     
     
    missing or invalid dependency detected while loading class file
    'RDDOperationScope.class'. Could not access term annotation in value com.jackson, because
    it (or its dependencies) are missing. Check your build definition for missing or conflicting
    dependencies. (Re-run with `-Ylog-classpath` to see the problematic classpath.)
    A full rebuild may help if 'RDDOperationScope.class' was compiled against an incompatible
    version of com.jackson.    scala_1    Unknown    Scala Problem
    missing or invalid dependency detected while loading class file 'RDDOperationScope.class'.
    Could not access term JsonInclude in value com.annotation, because it (or its
    are missing. Check your build definition for missing or conflicting dependencies.
    (Re-run with `-Ylog-classpath` to see the problematic classpath.) A full rebuild may help if
    'RDDOperationScope.class' was compiled against an incompatible version of com.annotation.
    scala_1    Unknown    Scala Problem
    missing or invalid dependency detected while loading class file
    'RDDOperationScope.class'. Could not access term jackson in value com.fasterxml,
    because it (or its dependencies) are missing. Check your build definition for missing or
    conflicting dependencies. (Re-run with `-Ylog-classpath` to see the problematic classpath.)
    A full rebuild may help if 'RDDOperationScope.class' was compiled against an incompatible
    version of com.fasterxml.    scala_1    Unknown    Scala Problem
    missing or invalid dependency detected while loading class file 'RDDOperationScope.class'.
    Could not access term annotation in value com.jackson, because it
    (or its dependencies) are missing. Check your build definition for missing or conflicting dependencies.
    (Re-run with `-Ylog-classpath` to see the problematic classpath.)
    A full rebuild may help if 'RDDOperationScope.class'
    was compiled against an incompatible version of com.jackson.    scala_1
    Unknown    Scala Problem ////////////////////////////////缺少jackson包
    missing or invalid dependency detected while loading class file 'RDD.class'.
    Could not access term io in package org.apache.hadoop, because it (or its dependencies)
    are missing. Check your build definition for missing or conflicting dependencies.
    (Re-run with `-Ylog-classpath` to see the problematic classpath.) A full rebuild may help if
    'RDD.class' was compiled against an incompatible version of org.apache.hadoop.    scala_1
    Unknown    Scala Problem //////////////////////////////缺少hadoop
    
    
     
  • 相关阅读:
    Entity Framework 实体框架的形成之旅--界面操作的几个典型的处理(8)
    C#开发微信门户及应用(28)--微信“摇一摇·周边”功能的使用和接口的实现
    Winform开发框架中实现同时兼容多种数据库类型处理
    Entity Framework 实体框架的形成之旅--数据传输模型DTO和实体模型Entity的分离与联合
    C#开发微信门户及应用(27)-公众号模板消息管理
    知识图谱 知识计算--- 本体推理 规则推理 路径计算 社区计算 相似图计算 链接预测 不一致检测
    动态规划算法模板和demo
    dga model train and test code
    基于图的异常检测(三):GraphRAD
    InterpretML 微软可解释性机器学习包
  • 原文地址:https://www.cnblogs.com/zhangXingSheng/p/6380755.html
Copyright © 2011-2022 走看看