Ask a Question

Properties props = new Properties staying null in groovy script

dvictor
Occasional Contributor

Properties props = new Properties staying null in groovy script

I'm trying to connect to KAFKA via groovy and use a widely popular script However, props is continuously returning null. I have tried both props.setProperty and props.put alike. Neither works, and props stays null of size 0. Script is below:

 

Properties props = new Properties();
props.setProperty("bootstrap.servers", "localhost:9092")
props.setProperty("group.id", "test")
props.put("enable.auto.commit", "true");
props.put("auto.commit.interval.ms", "1000");
props.put("key.deserializer","org.apache.kafka.common.serialization.StringDeserializer");
props.put("value.deserializer","org.apache.kafka.common.serialization.StringDeserializer");
KafkaConsumer<String, String> consumer = new KafkaConsumer<String, String>(props);

2 REPLIES 2
sonya_m
SmartBear Alumni (Retired)

dvictor
Occasional Contributor

Hi @sonya_m thanks for your response.

 

I have tried using both props.put("A", "B") and props.setProperty("A", "B") to no avail. 

 

Regardless of which method is used, when I go to load props into the linke of code below, props is still null with size of 0.

  • KafkaConsumer<String, String> consumer = new KafkaConsumer<String, String>(props);
cancel
Showing results for 
Search instead for 
Did you mean: