Guest User

Untitled

a guest
Sep 19th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. public class MessageProducer {
  2. private static final String MESSAGE_TOPIC_CUSTOMER = "customer.topic";
  3.  
  4. @Autowired
  5. private KafkaTemplate<String, Customer> template;
  6.  
  7. public void sendEmail(Customer customer) {
  8. template.send(MESSAGE_TOPIC_CUSTOMER, customer);
  9. }
  10.  
  11. }
Add Comment
Please, Sign In to add comment