zoukankan      html  css  js  c++  java
  • Flink 1.12.1 NoClassDefFoundError SourceFunction

    Flink 1.12.1 java.lang.NoClassDefFoundError: org/apache/flink/streaming/api/functions/source/SourceFunction

    错误信息描述

    使用Idea运行项目,抛出以下异常

    java.lang.NoClassDefFoundError: org/apache/flink/streaming/api/functions/source/SourceFunction
    	at java.lang.Class.getDeclaredMethods0(Native Method)
    	at java.lang.Class.privateGetDeclaredMethods(Class.java:2701)
    	at java.lang.Class.privateGetMethodRecursive(Class.java:3048)
    	at java.lang.Class.getMethod0(Class.java:3018)
    	at java.lang.Class.getMethod(Class.java:1784)
    	at sun.launcher.LauncherHelper.validateMainClass(LauncherHelper.java:544)
    	at sun.launcher.LauncherHelper.checkAndLoadMain(LauncherHelper.java:526)
    Caused by: java.lang.ClassNotFoundException: org.apache.flink.streaming.api.functions.source.SourceFunction
    	at java.net.URLClassLoader.findClass(URLClassLoader.java:382)
    	at java.lang.ClassLoader.loadClass(ClassLoader.java:418)
    	at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:355)
    	at java.lang.ClassLoader.loadClass(ClassLoader.java:351)
    	... 7 more
    Error: A JNI error has occurred, please check your installation and try again
    Exception in thread "main" 
    

    解决方案一

    修改pom文件,把里面与flink有关的scope为provided的代码行注释,类似以下效果

    <!-- This dependency is provided, because it should not be packaged into the JAR file. -->
    <dependency>
    	<groupId>org.apache.flink</groupId>
    	<artifactId>flink-streaming-java_${scala.binary.version}</artifactId>
    	<version>${flink.version}</version>
    	<!-- <scope>provided</scope> -->
    </dependency>
    <dependency>
    	<groupId>org.apache.flink</groupId>
    	<artifactId>flink-clients_${scala.binary.version}</artifactId>
    	<version>${flink.version}</version>
    	<!-- <scope>provided</scope> -->
    </dependency>
    

    刷新Maven依赖,重新运行项目

    maven reimport
    

    解决方案二

    我使用的是Idea 2020.3,通过调整idea配置,支持在项目运行时,将Provided的依赖有效

    进入Edit Configurations

    选择Modify options,选择Use classpath of module

    选择Inclue dependencies with "Provided" scope

  • 相关阅读:
    Ecshop后台管理增加成本价和毛利润统计功能
    如何在Ecshop首页调用积分商城里的商品
    Ecshop调用促销商品
    Python 精选内置函数
    Python爬虫原理
    android中解析后台返回的json字符串
    JSONObject与JSONArray的使用
    python的字符串截取
    centos6系统下网卡bond模式介绍
    fio工具中的iodepth参数与numjobs参数-对测试结果的影响
  • 原文地址:https://www.cnblogs.com/fengzhentian/p/14853695.html
Copyright © 2011-2022 走看看