码迷,mamicode.com
首页 > 编程语言 > 详细

spring boot 2.* 参数接收

时间:2018-11-16 11:40:35      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:int   1.0   st3   out   ppi   value   post   method   spring   

测试环境:spring boot 2.1.0
/*
//数组和参数同时传递需要借助实体类实现
//接收json
@RequestMapping(value = "test3",method = RequestMethod.POST)
public String test3(@RequestBody String obj){
System.out.println(obj);
return "1";
}
//接收数组
@RequestMapping(value = "test2",method = RequestMethod.POST)
public String test2(String[] obj){
System.out.println(obj);
return "1";
}
//接收指定参数
@RequestMapping(value = "test1",method = RequestMethod.POST)
public String test1(String id){
System.out.println(id);
return "1";
}*/

spring boot 2.* 参数接收

标签:int   1.0   st3   out   ppi   value   post   method   spring   

原文地址:https://www.cnblogs.com/vip95595/p/9968258.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!