3
在我們的項目中,我們設置我們的集成測試:如何在春季啓動通過覆蓋在<code>IntegrationTest</code>標註屬性,如下圖所示覆蓋彈簧啓動應用程序屬性1.4.3
春季啓動@RunWith(SpringJunitClassRunner.class)
@IntegrationTest("server.port:0",
"health.hystrix.enabled:false"
.... other properties ....
)
@ActiveProfile("local","no-swagger")
public class IntegrationTest{
}
然而1.4 @IntegrationTest
註釋已被棄用。 Spring文檔建議使用@SpringBootTest
註釋。 我的問題是如何覆蓋這個新註釋的屬性?
1但[SpringBootTes](http://docs.spring.io/spring-boot/docs/current/api/org/springframework/boot/test/context/SpringBootTest.html)噸的Javadoc是也值得鏈接。 –
@AliDehghani感謝阿里,補充說。 – Patrick