@@ -22,7 +22,7 @@ public class KafkaApplication {
22
22
public static void main (String [] args ) throws Exception {
23
23
24
24
ConfigurableApplicationContext context = SpringApplication .run (KafkaApplication .class , args );
25
-
25
+
26
26
MessageProducer producer = context .getBean (MessageProducer .class );
27
27
MessageListener listener = context .getBean (MessageListener .class );
28
28
/*
@@ -102,7 +102,7 @@ public void sendMessage(String message) {
102
102
}
103
103
104
104
public void sendMessageToPartion (String message , int partition ) {
105
- kafkaTemplate .send (partionedTopicName , partition , message );
105
+ kafkaTemplate .send (partionedTopicName , partition , null , message );
106
106
}
107
107
108
108
public void sendMessageToFiltered (String message ) {
@@ -124,13 +124,13 @@ public static class MessageListener {
124
124
125
125
private CountDownLatch greetingLatch = new CountDownLatch (1 );
126
126
127
- @ KafkaListener (topics = "${message.topic.name}" , group = "foo" , containerFactory = "fooKafkaListenerContainerFactory" )
127
+ @ KafkaListener (topics = "${message.topic.name}" , groupId = "foo" , containerFactory = "fooKafkaListenerContainerFactory" )
128
128
public void listenGroupFoo (String message ) {
129
129
System .out .println ("Received Messasge in group 'foo': " + message );
130
130
latch .countDown ();
131
131
}
132
132
133
- @ KafkaListener (topics = "${message.topic.name}" , group = "bar" , containerFactory = "barKafkaListenerContainerFactory" )
133
+ @ KafkaListener (topics = "${message.topic.name}" , groupId = "bar" , containerFactory = "barKafkaListenerContainerFactory" )
134
134
public void listenGroupBar (String message ) {
135
135
System .out .println ("Received Messasge in group 'bar': " + message );
136
136
latch .countDown ();
0 commit comments