广告
返回顶部
首页 > 资讯 > 精选 >SpringBoot @PostMapping接收HTTP请求的流数据问题怎么解决
  • 181
分享到

SpringBoot @PostMapping接收HTTP请求的流数据问题怎么解决

2023-07-05 06:07:00 181人浏览 薄情痞子
摘要

这篇文章主要讲解了“SpringBoot @PostMapping接收Http请求的流数据问题怎么解决”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“springBoot 

这篇文章主要讲解了“SpringBoot @PostMapping接收Http请求的流数据问题怎么解决”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“springBoot @PostMapping接收HTTP请求的流数据问题怎么解决”吧!

@PostMapping接收HTTP请求的流数据

@PostMapping("/test")public String pushMessage(@RequestBody byte[] data) throws Exception {    String JSON = URLDecoder.decode(new String(data, DEFAULT_CHARSET), DEFAULT_CHARSET);    log.info(">>> 接收CP推送的消息:{}", json);     JSONObject jsonObject = JacksonUtils.jsonToBean(json, JSONObject.class);    System.out.println(jsonObject.get("key"));    return “success”}

Client 请求

try {    //创建连接    URL url = new URL(ADD_URL);    HttpURLConnection connection = (HttpURLConnection) url.openConnection();    connection.setDoOutput(true);    connection.setDoInput(true);    connection.setRequestMethod("POST");    connection.setUseCaches(false);    connection.setInstanceFollowRedirects(true);    //application/x-javascript     //text/xml->xml数据     //application/x-javascript->json对象     //application/x-www-fORM-urlencoded->表单数据     //application/json;charset=utf-8 -> json数据    connection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");    connection.setRequestProperty("accept", "*@AliasFor(annotation = RequestMapping.class)String name() default "";@AliasFor(annotation = RequestMapping.class)String[] value() default {};@AliasFor(annotation = RequestMapping.class)String[] path() default {};@AliasFor(annotation = RequestMapping.class)String[] params() default {};@AliasFor(annotation = RequestMapping.class)String[] headers() default {};@AliasFor(annotation = RequestMapping.class)String[] consumes() default {};@AliasFor(annotation = RequestMapping.class)String[] produces() default {};}

其他变体如下:

@GetMapping、@PutMapping、@PatchMapping和@DeleteMapping,与@PostMapping实现类似

感谢各位的阅读,以上就是“SpringBoot @PostMapping接收HTTP请求的流数据问题怎么解决”的内容了,经过本文的学习后,相信大家对SpringBoot @PostMapping接收HTTP请求的流数据问题怎么解决这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是编程网,小编将为大家推送更多相关知识点的文章,欢迎关注!

--结束END--

本文标题: SpringBoot @PostMapping接收HTTP请求的流数据问题怎么解决

本文链接: https://www.lsjlt.com/news/350106.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

本篇文章演示代码以及资料文档资料下载

下载Word文档到电脑,方便收藏和打印~

下载Word文档
猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作