public class SimpleProducer { public static void main(String[] args) { String topicName = "simple-topic"; //KafkaProducer configuration setting // null, "hello world" Properties props = new Properties(); //bootstrap.servers, key.serializer.class, value.serializer.class //props.setProperty("bootstrap.servers", "192.168.56.101:9092"); props.setP..