skip to Main Content

Spring-boot Redis JMS JUnit

I am using Redis Server for message broker in my spring boot application. Is there any simple way to Junit my publish and receive API? e.g : Publisher : public String publish(Object domainObj) { template.convertAndSend(topic.getTopic(), domainObj.toString()); return "Event Published"; }…

VIEW QUESTION
Back To Top
Search