gpt4 book ai didi

java - 如果测试任务在 gradle 项目中失败,则运行停止 tomcat 任务

转载 作者:太空宇宙 更新时间:2023-11-04 11:20:38 26 4
gpt4 key购买 nike

我正在开发一个 Gradle 项目。我已经为它编写了一些测试。在build.gradle中,我为其编写了三个任务:tomcatStart、tomcatEnd和test。在测试任务中,我在 doFirst 中执行 tomcatStart ,在 doLast 中执行 tomcatStop 。如果没有测试失败,一切正常。但如果测试失败,tomcat 会继续运行。

我想知道是否有什么办法,即使测试任务失败也可以停止tomcat。

最佳答案

尝试使用测试任务的finalizebBy属性。官方documentation中有很好的描述。据其介绍:

Finalizer tasks are useful in situations where the build creates a resource that has to be cleaned up regardless of the build failing or succeeding. An example of such a resource is a web container that is started before an integration test task and which should be always shut down, even if some of the tests fail.

这是文档中的示例:

task taskX {
doLast {
println 'taskX'
throw new RuntimeException()
}
}
task taskY {
doLast {
println 'taskY'
}
}

taskX.finalizedBy taskY

关于java - 如果测试任务在 gradle 项目中失败,则运行停止 tomcat 任务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44945319/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com