本文介紹了使用Spring Profiles運行Gradle任務(集成測試)的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
需要使用彈簧配置文件通過Gradle運行測試。
gradle clean build
我已添加任務:
task beforeTest() {
doLast {
System.setProperty("spring.profiles.active", "DEV")
}
}
test.dependsOn beforeTest
我的測試定義是:
@RunWith(SpringRunner.class)
@SpringBootTest
@ActiveProfiles("TestProfile")
public class SomeTest {
但此結構不適用于我。
Gradle運行測試。
推薦答案
我認為您希望在運行時/測試JVM中設置系統屬性,但您在構建時JVM(即Gradle守護進程)中設置的系統屬性不正確。
參見Test.systemProperty(String, Object)
例如:
test {
systemProperty 'spring.profiles.active', 'DEV'
}
..。還有關于你嘗試的另一張紙條。請注意,任務具有doFirst
和doLast
方法,因此您不需要為您正在嘗試的內容單獨執行任務。
這篇關于使用Spring Profiles運行Gradle任務(集成測試)的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,