写点什么

Flink 通过官网创建自己的工程 -20

用户头像
小知识点
关注
发布于: 2020 年 09 月 08 日

1.通过官网创建自己的工程

[root@hadoop162 bin]# jps -l
6193 org.apache.flink.runtime.entrypoint.StandaloneSessionClusterEntrypoint
2707 com.intellij.idea.Main
4771 org.jetbrains.plugins.scala.nailgun.NailgunRunner
4648 org.jetbrains.idea.maven.server.RemoteMavenServer36
6938 sun.tools.jps.Jps
6490 org.apache.flink.runtime.taskexecutor.TaskManagerRunner
6811 org.jetbrains.jps.cmdline.Launcher
[root@hadoop162 bin]#


mvn archetype:generate \

-DarchetypeGroupId=org.apache.flink \

-DarchetypeArtifactId=flink-walkthrough-datastream-scala \

-DarchetypeVersion=1.11.1 \

-DgroupId=frauddetection \

-DartifactId=frauddetection \

-Dversion=0.1 \

-Dpackage=spendreport \

-DinteractiveMode=false



用户头像

小知识点

关注

奇迹的出现往往就在再坚持一下的时候! 2018.04.02 加入

还未添加个人简介

评论

发布
暂无评论
Flink通过官网创建自己的工程-20