springboot接收post请求
Posted 写bug的小杨
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot接收post请求相关的知识,希望对你有一定的参考价值。
@Controller public class QuickController { @PostMapping("/quick") @ResponseBody public String quick(@RequestParam("data") String data){ return data; } }
以上是关于springboot接收post请求的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot Controller接收参数的几种常用注解方式
SpringBoot 接收Get请求个别参数可能为空的解决方案
我要给发送请求后台传递参数如图所示,json数组中的对象后台有对应实体类,后台使用springboot如何接收?