Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
この Apache Wink ハンドラに対して CURL 経由で有効なリクエストを送信するにはどうすればよいですか?
@GET @Consumes(MediaType.APPLICATION_JSON) @Produces(MediaType.APPLICATION_JSON) public JSONObject find(JSONObject request) { // .... }
これは古いスレッドだと思いますが、私が持っているように誰かが質問につまずいた場合に備えて答えたいと思いました
試す:
@GET @Path ( "{json}" ) @Produces (MediaType.APPLICATION_JSON ) public JSONObject find(@PathParam("json") JSONObject json) { ... }