我使用@Validated注释RestController来验证路径变量/请求parmas:
@RestController@Validated公共类MainController实现ApplicationListener< …
我怀疑因为你在嘲笑MainController,所以@Validated没有生效。试试这个:
@RunWith(SpringJUnit4ClassRunner.class) @SpringBootTest @ActiveProfiles("test") public class TestMainController { @Autowired private MainController mainController; @MockBean private CarsService carsServiceMock; @Autowired private WebApplicationContext context; private MockMvc mockMvc; @Before public void initMocks() { mockMvc = MockMvcBuilders.webAppContextSetup(context) .build(); }