gpt4 book ai didi

spring - 如何在 Spring REST Controller 中访问普通的 json 主体?

转载 作者:IT老高 更新时间:2023-10-28 13:43:29 25 4
gpt4 key购买 nike

有以下代码:

@RequestMapping(value = "/greeting", method = POST, consumes = APPLICATION_JSON_VALUE, produces = APPLICATION_JSON_VALUE)
@ResponseBody
public String greetingJson(@RequestBody String json) {
System.out.println("json = " + json); // TODO json is null... how to retrieve plain json body?
return "Hello World!";
}

尽管 json 在正文中发送,但 String json 参数始终为 null。

注意我不想要自动类型转换,我只想要普通的 json 结果。

这个例子有效:

@RequestMapping(value = "/greeting", method = POST, consumes = APPLICATION_JSON_VALUE, produces = APPLICATION_JSON_VALUE)
@ResponseBody
public String greetingJson(@RequestBody User user) {
return String.format("Hello %s!", user);
}

也许我可以使用 ServletRequest 或 InputStream 作为参数来检索实际的正文,但我想知道是否有更简单的方法?

最佳答案

到目前为止我发现的最佳方法是:

@RequestMapping(value = "/greeting", method = POST, consumes = APPLICATION_JSON_VALUE, produces = APPLICATION_JSON_VALUE)
@ResponseBody
public String greetingJson(HttpEntity<String> httpEntity) {
String json = httpEntity.getBody();
// json contains the plain json string

如果有其他选择,请告诉我。

关于spring - 如何在 Spring REST Controller 中访问普通的 json 主体?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17866996/

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