spring接入kafka

一. 引入依赖:

<dependency>
       <groupId>org.springframework.kafka</groupId>
       <artifactId>spring-kafka</artifactId>
</dependency>

二. 新增配置:

# Kafka config
spring.kafka.producer.bootstrap-servers=192.168.2.201:9092
spring.kafka.consumer.bootstrap-servers=192.168.2.201:9092
# 事务支持
# spring-kafka提供了spring.kafka.producer.transaction-id-prefix属性开启事务
# 仅需要配置事务前缀,并且在所有涉及到kafka操作及监听的方法上增加@Transcational注解。
spring.kafka.producer.transaction-id-prefix=kafka_tx.
#自定义topic
customer.kafka.topic=yfy1

三. 具体代码实现

package com.kafka.controller;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.kafka.annotation.KafkaListener;
import org.springframework.kafka.core.KafkaTemplate;
import org.springframework.transaction.annotation.Transactional;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class BaseController {

    private static final Logger logger = LoggerFactory.getLogger(BaseController.class);

    @Autowired
    private KafkaTemplate template;

    @Value("${customer.kafka.topic}")
    private String topic;

    /**
     * 手动开启事务
     * @param input
     * @return
     */
    @GetMapping("/send/{input}")
    public String sendToKafka(@PathVariable String input) {
        // 事务操作
        template.executeInTransaction(t -> {
            t.send(topic, input);
            if ("error".equals(input)) {
                throw new RuntimeException("input is error");
            }
            t.send(topic, input + " anthor");
            return true;
        });
        return "send success";
    }

    /**
     * 注解声明式事务
     */
    @GetMapping("/sendt/{input}")
    @Transactional(rollbackFor = RuntimeException.class)
    public String sendToKafka2(@PathVariable String input) {
        template.send(topic, input);
        if ("error".equals(input)) {
            throw new RuntimeException("input is error");
        }
        template.send(topic, input + " anthor");
        return "send success";
    }

    /**
     * 接收消息
     */
    @KafkaListener(id = "", topics = "${customer.kafka.topic}", groupId = "group.demo")
    public void listener(String input) {
        logger.info("input value:{}", input);
    }

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值