我需要在请求URI中传递电子邮件ID:
@RequestMapping(value = "/version2/auth/users/{userid}", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE)
示例: http://localhost:8081/myServices/version2/auth/users/me@myMail.com
我收到以下异常:
org.springframework.web.HttpMediaTypeNotAcceptableException:无法 找到可接受的代表 org.springframework.web.servlet.mvc.method.RequestMappingInfoHandlerMapping.handleNoMatch(RequestMappingInfoHandlerMapping.java:234)
你能帮我解决这个问题。 提前谢谢。
答案 0 :(得分:0)
我假设此方法返回某个User类的对象。您的用户类是否具有适当的公共getter和setter?你是否添加了jackson库?