我是多少控制器可以返回 null 的结果。
我的目标是验证它的正确性和抛出适当的异常。
很高兴知道你的想法:
提前致谢!
答案 0 :(得分:0)
如建议的那样 - 使用spring MVC测试框架。有了它,您可以很好地测试您的ajax请求的结果。
有一个很好的例子:
@Test
public void getAccount() throws Exception {
this.mockMvc.perform(get("/accounts/1").accept(MediaType.parseMediaType("application/json;charset=UTF-8")))
.andExpect(status().isOk())
.andExpect(content().contentType("application/json"))
.andExpect(jsonPath("$.name").value("Lee"));
}
但请检查页面是否有必要进行设置。