@Controller
public class QuickController {

    @PostMapping("/quick")
    @ResponseBody
    public String quick(@RequestParam("data") String data){
        return data;
    }

}

 

 

 

 

 

 springboot接收post请求

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-11
  • 2021-06-05
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-06-30
  • 2022-12-23
  • 2022-12-23
  • 2022-01-01
  • 2021-12-11
  • 2021-07-15
相关资源
相似解决方案