SpringBoot 如何同时接收JSONObject和参数呢?

重生 SpringBoot 发布时间:2024-03-05 21:09:15 阅读数:17105 1
下文笔者讲述SpringBoot开发Controller时,同时接收JSONObject和参数的方法分享,如下所示
SpringBoot接收JSONObject和参数信息的实现思路:
     方式1:
        借助@RequestBody和@RequestParam注解
            即可实现同时接收JSONObject和参数信息
    
     方式2:
       借助ObjectMapper()对象从request中获取
       和request.getParameter()方法
         即可同时获取JSONObject和参数信息
例:同时获取JSONObject和参数的示例

使用@RequestBody和@RequestParam注解

@PostMapping(value = "/api/test")
public ResponseEntity<Void> receiveData(@RequestBody JSONObject data, @RequestParam("param1") String param1) {
    // 处理数据
    return ResponseEntity.ok().build();
}

使用HttpServletRequest

@PostMapping(value = "/api/test")
public ResponseEntity<Void> receiveData(HttpServletRequest request) {
    try {
        JSONObject data = new ObjectMapper().readValue(request.getInputStream(), JSONObject.class);
        String param1 = request.getParameter("param1");
        // 处理数据
        return ResponseEntity.ok().build();
    } catch (IOException e) {
        // 处理异常
        return ResponseEntity.badRequest().build();
    }
}
版权声明

本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。

本文链接: https://www.Java265.com/JavaFramework/SpringBoot/202403/8101.html

最近发表

热门文章

好文推荐

Java265.com

https://www.java265.com

站长统计|粤ICP备14097017号-3

Powered By Java265.com信息维护小组

使用手机扫描二维码

关注我们看更多资讯

java爱好者