譬如
@RequestMapping(value = "/getValue/{colorId}/{locationId}", method = RequestMethod.GET)
我希望可以有两种请求
1 /getValue/red/beijing
2 /getValue/red
而且当请求为 /getValue/red 的时候,类似于下面的判断生效
if(locationId == null){
dosomthing;
}
有这种操作吗?
1
kevinzhwl 2017-09-11 21:05:28 +08:00 via iPhone
简单的方法,写两个映射即可
复杂的方法,locateid 用正则。 |