• 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

  • 相关阅读:
    python 获取当前文件路径和上级路径
    软件测试如何优雅的拒绝offer?
    软件测试面试题04Linux常用命令
    测试工程师刚入职如何快速熟悉需求并输出测试用例?
    软件测试面试题05接口测试中如何校验结果是否正确?
    window10 清空wifi连接记录
    软件测试面试题02软件测试流程?
    软件测试面试题06没有接口文档,如何做接口测试?
    selenium 元素定位
    软件测试面试题01mysql 与redis 的区别?
  • 原文地址:https://www.cnblogs.com/fengzhentian/p/14853695.html
Copyright © 2020-2023  润新知