在Spring(Boot)中,@IntegrationTest
和@WebIntegrationTest
有什么区别?
根据文档,这两个注释都提供了一个已满载的应用程序服务器,可以监听通常的端口。
最佳答案
@WebIntegrationTest = @IntegrationTest + @WebAppConfiguration
关于spring - @IntegrationTest与@WebIntegrationTest批注,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33460245/