Spring Boot Integration test random free port
问题 I am able to get Spring Boot integration to generate a random free port to launch itself on. But I also need a free port for 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