在执行官方教程的创建项目步骤后:
mvn archetype:generate \
-DarchetypeGroupId=org.apache.flink \
-DarchetypeArtifactId=flink-walkthrough-datastream-java \
-DarchetypeVersion=1.10.0 \
-DgroupId=frauddetection \
-DartifactId=frauddetection \
-Dversion=0.1 \
-Dpackage=spendreport \
-DinteractiveMode=false
如果直接运行项目,会报这个错,解决方式是将pom.xml中的org.apache.flink依赖的<scope>provided</scope>
去掉。