博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring-Boot结合Spring-Kafka接收Kafka消息
阅读量:6089 次
发布时间:2019-06-20

本文共 1713 字,大约阅读时间需要 5 分钟。

hot3.png

application.properties:

spring.kafka.bootstrap-servers=kafka1:9092,kafka2:9092,kafka3:9092#spring.kafka.bootstrap-servers=kafka1:9092# msspring.kafka.consumer.auto-commit-interval=100# What to do when there is no initial offset in Kafka or if the current offset does not exist any more on the server.#spring.kafka.consumer.auto-offset-reset=# Comma-delimited list of host:port pairs to use for establishing the initial connection to the Kafka cluster.#spring.kafka.consumer.bootstrap-servers=# Id to pass to the server when making requests; used for server-side logging.spring.kafka.consumer.client-id=s_3a_auth_biz_consumer# If true the consumer's offset will be periodically committed in the background.spring.kafka.consumer.enable-auto-commit=true# Unique string that identifies the consumer group this consumer belongs to.spring.kafka.consumer.group-id=AuthLogCol01spring.kafka.consumer.heartbeat-interval=1000# Maximum number of records returned in a single call to poll().spring.kafka.consumer.max-poll-records=10# Number of threads to run in the listener containers.spring.kafka.listener.concurrency=3# Timeout in milliseconds to use when polling the consumer.spring.kafka.listener.poll-timeout=3000

Consumer代码:

package com.pasenger.kafka.consumer;import lombok.extern.slf4j.Slf4j;import org.springframework.kafka.annotation.KafkaListener;import org.springframework.stereotype.Component;/** * 认证日志记录采集 * TOPIC: AAA_PLT_AUTH_LOG * Created by Pasenger on 2017/3/20. */@Component@Slf4jpublic class AuthLogConsumer {    @KafkaListener(topics = "AAA_PLT_AUTH_LOG", group = "AuthLogColGroup")    public void process(String message){        log.info(message);    }}

转载于:https://my.oschina.net/pasenger/blog/865335

你可能感兴趣的文章
zabbix企业应用之服务端与客户端的安装
查看>>
实例讲解遗传算法——基于遗传算法的自动组卷系统【理论篇】
查看>>
无法在web服务器上启动调试。调试失败,因为没有启用集成windows身份验证
查看>>
Bat相关的项目应用
查看>>
Django为数据库的ORM写测试例(TestCase)
查看>>
web.xml中的contextConfigLocation在spring中的作用
查看>>
NYOJ-107 A Famous ICPC Team
查看>>
与众不同 windows phone (44) - 8.0 位置和地图
查看>>
Visual Studio Code 使用 ESLint 增强代码风格检查
查看>>
iOS设备中的推送(二):证书
查看>>
敏捷 - #3 原则:经常提供工作软件 ( #3 Agile - Principle)
查看>>
数据结构与算法:二分查找
查看>>
使用思科模拟器Packet Tracer与GNS3配置IPv6隧道
查看>>
iOS开发-NSPredicate
查看>>
Exchange Server 2003 SP2 数据存储大小限制修改
查看>>
expr命令用法-实例讲解
查看>>
酷派8705救砖
查看>>
iOS10里的通知与推送
查看>>
# C 语言编写二进制/十六进制编辑器
查看>>
EMS SQL Management Studio for MySQL
查看>>