为了账号安全,请及时绑定邮箱和手机立即绑定

访问 Spring @RequestBody 中动态添加的属性

访问 Spring @RequestBody 中动态添加的属性

慕的地6264312 2023-12-10 15:11:31
我有一个如下所示的帖子映射:@PostMapping(value = "/profiles/{profileId}/verify/")public Response getVerificationInformation (    @RequestBody VerificationBody body) {    ... do something with the body    ... call function A with body object}随后在函数 A 中,我访问 body 对象的一些属性。另外,在前端,我正在修改命中此后映射的 JSON 对象(我正在添加另一个属性)。例如,{    "name" : "Example",    "profileId" : "123",    // and I am dynamically adding an attribute 'country'    "country" : "US"}问题出在函数 A 处,我无法获取有关动态添加的属性(在本例中为“国家/地区”)的信息。为动态添加的属性声明 getter 并不理想,因为动态添加的属性很多。我已经尝试了 @JsonAnySetter 和 @JsonAnyGetter 的方向,但我得到了 400。我正在寻找其他解决方案。请帮忙并提前致谢!(我简化了一些变量和函数的名称,但我希望它不会太难理解)。VerificationBody 可以被认为如下:public class VerificationBody {    @JsonProperty(value = "name")    String name,    @JsonProperty(value = "profileId")    Long profileId,    // ... it does not include country}设法解决 400 问题,我可以通过 JsonAnyGetter 和 JsonAnySetter 获取属性。
查看完整描述

5 回答

?
慕尼黑5688855

TA贡献1848条经验 获得超2个赞

您的VerificationBody课程可能如下所示:


class VerificationBody {

private String prop1;

//other properties & their getters and setter


private Map<String, ? extends Object> otherProps;

// getter setters for  otherProps


}

这将使您始终能够收到额外的属性,而不会出现任何扩展问题。


查看完整回答
反对 回复 2023-12-10
?
蝴蝶不菲

TA贡献1810条经验 获得超4个赞

您可以使用HashMap类似的方法来解决此类问题:


@RequestMapping(value = "/profiles/{profileId}/verify/", headers = "Accept=application/json", method = RequestMethod.POST)

public void verifyBody(@RequestBody HashMap<String, HashMap<String, String>> requestData) {


HashMap<String, String> customerInfo = requestData.get("verificationBody");

String param1 = customerInfo.get("param1");

//TODO now do whatever you want to do.

}


查看完整回答
反对 回复 2023-12-10
?
不负相思意

TA贡献1777条经验 获得超10个赞

请求体的注解是@RequestBody。由于请求正文是一个键值对,因此将其声明为 Map 是明智的做法。


@PostMapping("/blog")

public Blog create(@RequestBody Map<String, String> body){...}

要提取相应的键及其值:


String id = body.get("id");

String title = body.get("title");

String content = body.get("content");

尝试使用此链接


https://medium.com/better-programming/building-a-spring-boot-rest-api-part-ii-7ff1e4384b0b


查看完整回答
反对 回复 2023-12-10
?
米琪卡哇伊

TA贡献1998条经验 获得超6个赞

您可以尝试VerificationBody像这样修改类:


public class VerificationBody {

    private String name;

    private Long profileId;


    // getters & setters

}

getVerificationInformation像这样的类:


@PostMapping(value = "/profiles/{profileId}/verify/",

             consumes = MediaType.APPLICATION_JSON_VALUE,

             produces = MediaType.APPLICATION_JSON_UTF8_VALUE)

public Response getVerificationInformation (

    @RequestBody VerificationBody body) {


查看完整回答
反对 回复 2023-12-10
?
慕森卡

TA贡献1806条经验 获得超8个赞

根本原因是您的 JSON 字符串无效,有效的字符串应该如下所示:


{

  "name": "Example",

  "profileId": "123",

  "country": "US"

}

请确保每个键都用双引号引起来,否则在使用Jackson.


顺便说一句,我正在使用 Spring Boot,我可以通过您的代码片段使用无效的JSON 字符串作为负载来重现获取 HTTP 状态代码 400。


查看完整回答
反对 回复 2023-12-10
  • 5 回答
  • 0 关注
  • 176 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信