我能够获得Spring Boot集成,以生成一个随机的免费端口来启动自身。但是我还需要一个Redis的免费端口。
@ContextConfiguration(classes = {MyApplication.class}, loader = SpringApplicationContextLoader.class) @WebIntegrationTest(randomPort = true, value = "server.port:0") @ActiveProfiles(profiles = {"local"}) public class SegmentSteps { private static final String HOST_TEMPLATE = "http://localhost:%s"; // Needs to be a random open port private static final int REDIS_PORT = 6380; private String host; @Value("${local.server.port}") private int serverPort; private RedisServer redisServer; @Before public void beforeScenario() throws Exception { host = String.format(HOST_TEMPLATE, serverPort); redisServer = RedisServer.builder() .redisExecProvider(RedisExecProvider.defaultProvider()) .port(REDIS_PORT) .setting("bind 127.0.0.1") .build(); redisServer.start(); } ... }
关于如何实现这一目标的任何想法?
您可以使用Spring Framework SocketUtils获得可用的端口:
SocketUtils
int redisPort = SocketUtils.findAvailableTcpPort();