flink集成springboot案例_集成-Apache Flink + Spring Boot

在IDE中运行Apache Flink与Spring Boot的集成案例没有问题,但在Flink集群上运行时出现ClassLoader异常。错误源于使用了Spring Boot Maven插件打包的jar文件,其定制的启动布局不被Flink类加载器支持。解决方案是使用原始jar文件或maven-shade插件生成包含所有依赖的jar文件进行部署。
摘要由CSDN通过智能技术生成

I'm testing the integration between Apache Flink and Spring Boot, to run them on IDE is fine, but when I tried to run on Apache Flink Cluster I had one Exception related to ClassLoader.

The classes are really simple:

BootFlinkApplication

@SpringBootApplication

@ComponentScan("com.example.demo")

public class BootFlinkApplication {

public static void main(String[] args) {

System.out.println("some test");

SpringApplication.run(BootFlinkApplication.class, args);

}

}

FlinkTest

@Service

public class FlinkTest {

@PostConstruct

public void init() {

StreamExecutionEnvironment see = StreamExecutionEnvironment.getExecutionEnvironment();

see.fromElements(1, 2, 3, 4)

.filter(new RemoveNumb

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值