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.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…