application.yml
或者bootstrap.yml
java@RunWith(SpringRunner.class)
@SpringBootTest
public class ClientTest {
}
application.yml
application-dev.yml
application-local.yml
或者
bootstrap.yml
bootstrap-dev.yml
bootstrap-local.yml
java//指定local文件的配置
@RunWith(SpringRunner.class)
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT, properties = {"spring.profiles.active=local"})
public class ClientTest {
}
本文作者:Weee
本文链接:
版权声明:本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!