gpt4 book ai didi

java - 如何在 RESTful 服务端读取请求中的 JSON 消息。

转载 作者:行者123 更新时间:2023-12-02 13:30:58 26 4
gpt4 key购买 nike

我正在尝试读取从服务客户端发送的 JSON 数据。无论我尝试什么,我都会在控制台中得到一个空对象。//我的服务

 @Path("signup")
public class signupservice {


@POST
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
public JSONObject Signmeup( JSONObject inputJsonObj) throws JSONException {

String fname = inputJsonObj.toString();
System.out.println(fname);
JSONObject outputJsonObj = new JSONObject();
outputJsonObj.put("output", "output");
return outputJsonObj;
}
}

我正在发送 postman 的请求。 Postman setup

最佳答案

使用@RequestBody注解从Request header中读取发布的数据

  public JSONObject Signmeup(@RequestBody String inputJsonObj) throws {
//your code
}

关于java - 如何在 RESTful 服务端读取请求中的 JSON 消息。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43179097/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com