赞
踩
– Start
之前的例子都是发送和接收 String 消息,现在我们来看一个发送对象的例子。
package shangbo.kafka.example13; import org.springframework.context.ApplicationContext; import org.springframework.context.annotation.AnnotationConfigApplicationContext; import org.springframework.kafka.core.KafkaTemplate; public class App { @SuppressWarnings({ "resource", "unchecked" }) public static void main(String[] args) throws InterruptedException { ApplicationContext context = new AnnotationConfigApplicationContext(AppConfig.class); // 使用 kafkaTemplate 发送消息 KafkaTemplate<String, User> kafkaTemplate = context.getBean(KafkaTemplate.class); // 异步发送 kafkaTemplate.send("topic4", new User("1", "ShangBo")); kafkaTempl
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。