我的restapi如下-
@POST
@Path("/search")
@Produces(MediaType.APPLICATION_JSON)
@Consumes(MediaType.APPLICATION_JSON)
public Response getProducts(@RequestBody MyClass myclass) throws Exception {
//my code
}
我已经在myclass和所有后续类中添加了默认构造函数。每次我用这个json(在请求体中发送)点击url时,我都会得到http415不支持的媒体类型客户端错误,有人能帮我吗?发送请求时,我正在设置-内容-type:application/json 和accept-application/json
暂无答案!
目前还没有任何答案,快来回答吧!