skip to Main Content

Postgresql – Spring-boot testcontainers in 3.1 for specific version of Postgres

The new release of spring-boot 3.1 added support for managing testcontainers when running your app in development: https://docs.spring.io/spring-boot/docs/3.1.0-SNAPSHOT/reference/html/features.html#features.testing.testcontainers.at-development-time. I'm attempting to get it to work with the specific postgres version I'm using for my project, but I'm running into issues.…

VIEW QUESTION

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