我正在尝试使用 spring boot 进行简单的测试。
mockMvc.perform(post("/user") .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(userJohn))) .andExpect(jsonPath("$[0].username", is("bob")));
对 jsonPath 使用此导入:
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.jsonPath;
我得到:
andExpect (org.springframework.test.web.servlet.ResultMatcher) in ResultActions cannot be applied to (org.springframework.test.web.servlet.result.MockMvcResultMatchers.jsonPath)
如果我尝试将其转换为 (ResultMatcher),我会得到:
java.lang.ClassCastException: org.springframework.test.web.servlet.result.JsonPathResultMatchers cannot be cast to org.springframework.test.web.servlet.ResultMatcher
我使用的是 Spring Boot 2.0.4 版。有什么想法可能是什么问题?
相关分类