0
是否可以編寫一個接受少量參數的@POST方法,某些對象是否有一些原始的?像這樣:接受幾個參數的POST方法
@POST
@Consumes({MediaType.APPLICATION_JSON})
@Produces({MediaType.TEXT_PLAIN})
@Path("/post")
public String postMessage(Message msg,Car car,String s,int i) throws Exception{
}
如果是 - 請求體如何看起來像?
謝謝
你看看在POST任何教程相應的JSON對象? –
爲什麼你需要使用'int'而不是'Integer'? – walen