我正在寻找与foo
类似的功能。
@WebMvcTest
的作用。
1. @WebMvcTest
2.仅适用于only instantiating the web layer, not the whole context
应用程序(因为它在软件包org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest中)。
我要实现的目标
在Controller上写单元测试用例仅实例化Web层,而不实例化Spring MVC应用程序(不是Spring Boot应用程序)的整个上下文?
有没有办法做到这一点?