UDP协议的实现

一、udp协议使用场景:
1.面向数据报方式
2.网络数据大多为短消息
3.拥有大量Client
4.对数据安全性无特殊要求
5.网络负担非常重,但对响应速度要求高

废话不多说直接上主菜:

二、依赖

<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-integration</artifactId>
            <exclusions>
                <exclusion>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-starter-logging</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>org.springframework.integration</groupId>
            <artifactId>spring-integration-ip</artifactId>
        </dependency>

三、udp实现步骤:

1.实例化一个udp并创建端口与接口通道

@Bean
    public UnicastReceivingChannelAdapter getUnicastReceivingChannelAdapter() {
        //实例化一个udp 30000端口
        UnicastReceivingChannelAdapter adapter = new                  
        UnicastReceivingChannelAdapter(30000);
        //接收通道
        adapter.setOutputChannelName("udp");
        return adapter;
}

2.转换器:接受udp消息在转发出去(转换数据格式为我们需要)

@Transformer(inputChannel="udp",outputChannel="udpString")
    public String transformer(Message<?> message) throws UnsupportedEncodingException {
       MessageHeaders messageHeaders= message.getHeaders();
       return new String((byte[])message.getPayload(),"gbk");
    }

3.过滤器:过滤调我们不需要的信息数据:


    @Filter(inputChannel="udpString",outputChannel="udpFilter")
    public boolean filter(String message) {
       return true;
    }

4.路由分发器:对接收到的信息进行分发处理(那个处理器处理那个消息)

@Router(inputChannel="udpFilter")
    public String routing(String message) {
        if(message.contains("status")) {
            return "udpRoute1";
        } else {
            return "udpRoute2";
        }
    }

5.处理器:进行消息处理操作

//处理器:进行消息的处理
   @ServiceActivator(inputChannel="udpRoute1")
   public void udpMessageHandle(String message) {
      logger.info("udp1:" +message);
   }


    @ServiceActivator(inputChannel="udpRoute2")
    public void udpMessageHandle2(String message) {
       logger.info("udp2:" +message);
    }

注:连接通道不要写错了哦!!!!

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值