我正在使用spring-data-jpa @EnableSpringDataWebSupport和DomainClassConverter来不通过存储库手动查找实例.当在控制器上做一个控制器测试(MockMvc独立设置测试)时
@RequestMapping(value = '/user/{userId}',method = RequestMethod.GET)
public UserDetails detail(@PathVariable('userId') User user) {
...
}
我得到一个ConversionNotSupportedException.有可能像这样测试控制器吗?我该怎么办?
最佳答案
我不知道它会是一个选项,但在我的情况下我曾经使用HttpClient来测试我的控制器与IntegrationTest
原文链接:https://www.f2er.com/spring/432112.html HttpClient httpClient = login(HTTP_SERVER_DOMAIN,"user1@gmail.com","password");
GetMethod getAllAdvicesMethod = new GetMethod(adviceGetURL);
getAllAdvicesMethod
.addRequestHeader("Content-Type","application/json");
try {
httpClient.executeMethod(getAllAdvicesMethod);
} catch (HttpException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
您可以使用Rest Template for Spring以及https://spring.io/blog/2009/03/27/rest-in-spring-3-resttemplate