@PreDestroy public void destroy() { redisServer.stop(); }
@Bean public JedisConnectionFactory connectionFactory() throws IOException { redisServer = new RedisServer(Protocol.DEFAULT_PORT); redisServer.start(); return new JedisConnectionFactory(); }