Puoi utilizzare un Redis incorporato come https://github.com/kstyrc/embedded-redis
- Aggiungi la dipendenza al tuo pom.xml
-
Regola le proprietà del test di integrazione in modo che puntino al redis incorporato, ad esempio :
spring: redis: host: localhost port: 6379
-
Istanziare il server redis incorporato in un componente definito solo nei test :
@Component public class EmbededRedis { @Value("${spring.redis.port}") private int redisPort; private RedisServer redisServer; @PostConstruct public void startRedis() throws IOException { redisServer = new RedisServer(redisPort); redisServer.start(); } @PreDestroy public void stopRedis() { redisServer.stop(); } }