All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fun.fengwk.convention4j.springboot.test.starter.redis.RedisServerTestConfig Maven / Gradle / Ivy

The newest version!
package fun.fengwk.convention4j.springboot.test.starter.redis;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import redis.embedded.RedisServer;

import java.io.IOException;

/**
 * @author fengwk
 */
public class RedisServerTestConfig {

    @Bean(initMethod = "start", destroyMethod = "stop")
    public RedisServer redisServer(@Value("${spring.redis.port:6379}") int port) throws IOException {
        return new RedisServer(port);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy