springboot集成kafka,创建及删除topic,生产消息及消费消息

springboot集成kafka还是挺方便了,spring提供了KafkaTemplate,用来生产消息,消费者消费消息,就需要使用KafkaListener了,创建和删除topic使用AdminClient。

第一步:pom.xml添加依赖

<dependencies>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-web</artifactId>
		</dependency>
		<dependency>
			<groupId>org.springframework.kafka</groupId>
			<artifactId>spring-kafka</artifactId>
		</dependency>

		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-devtools</artifactId>
			<scope>runtime</scope>
			<optional>true</optional>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-test</artifactId>
			<scope>test</scope>
		</de

猜你喜欢

转载自blog.csdn.net/figo0423/article/details/125352537