Flink自定义函数的常用方式

一、实现Flink提供的接口

// 自定义函数
class MyMapFunction implements MapFunction<String, Integer>{
   
    public Integer map(String value){
   
        return Integer.parseInt(value

你可能感兴趣的:(Water,flink,java,大数据)