IDEA调试Flink无法打开UI界面原因以及解决办法
问题描述
报错:The module flink-runtime-web could not be found in the class path. Please add this jar in order to enable web based job submission.
解决办法
在pom.xml中添加依赖:
<dependency>
<groupId>org.apache.flink</groupId>
<artifactId>flink-runtime-web_2.11</artifactId>
<version>${flink.version}</version>
</dependency>