赞
踩
一、简介
在这里介绍kafka与spring的整合,这里采用kafkaTemplate方式。
二、生产者开发步骤
1、添加maven依赖(略去spring依赖,请自行添加)
<dependency> <groupId>org.apache.kafka</groupId> <artifactId>kafka_2.9.2</artifactId> <version>0.8.2.1</version> </dependency> <dependency> <groupId>org.apache.kafka</groupId> <artifactId>kafka-clients</artifactId> <version>1.0.0</version> </dependency>2、添加生产者spring配置
主要包含配置kafka生产者连接参数,产生kafka生产者工厂bean以及产生kafkaTemplate的bean。
实例如下:
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd"> <bean id="kafkaProducerProperites" class="java.util.HashMap"> <constructor-arg> <map> <entry key="bootstrap.servers" value="192.168.0.107:9092" /> <entry key="group.id" value="0"/> <entry key="retries" value="3"/> <entry key="batch.size" value="16384"/>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。