赞
踩
目录
问题描述:
flink运行报错:Exception in thread "main" java.lang.IllegalStateException: No ExecutorFactory found to execute the application.
原因:缺少 flink-client jar
解决:引入依赖
<dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-clients_2.11</artifactId> <version>${flink.version}</version> </dependency>