Jersey RESTfull service with JSON

雨燕双飞 提交于 2019-12-18 09:05:12

问题


I want to parse the values from the JSON-Post into Java-Variables. But they are always empty!

JSON-Post:

{"algID":0,"vertices":[1,2,3]}

My try to parse it into Java-Variables:

  @POST
  @Consumes(MediaType.APPLICATION_JSON)
  @Path("getCloseness_vertices")
  public String getCloseness_vertices(
  @FormParam("algID") int algID,
  @FormParam("vertices") IntArray vertices)

If i try it like this:

public String getCloseness_vertices(int algID)

Tomcat says:

A message body reader for Java class int, and Java type int, and MIME media type application/json; charset=UTF-8 was not found.

Any help would be nice, I just don't get it.


回答1:


You need to create a POJO that Jersey can serialize the JSON to:

import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement
public class MyPojo {
    public int algID;
    public int[] verticies;

    public MyPojo() {} // constructor is required

}

Then ...

@POST
@Consumes(MediaType.APPLICATION_JSON)
@Path("getCloseness_vertices")
public String getCloseness_vertices(MyPojo p) 
{
    int i = p.algID;
}

Also you need to include the jersey-json jar file.



来源:https://stackoverflow.com/questions/7388288/jersey-restfull-service-with-json

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!