我可以知道是否可以用2个帖子注释一个方法并获取?
@RequestMapping(value = "/testonly",
method = RequestMethod.GET, RequestMethod.POST)
public String getSomething(){
}
答案 0 :(得分:24)
method
字段是一个数组,所以我希望这可以工作:
@RequestMapping(value = "/testonly",
method = { RequestMethod.GET, RequestMethod.POST })
答案 1 :(得分:0)
它不应该将方法类型作为GET和POST传递。如果我们同时传递GET和POST,它将抛出意外的异常。
此致 Raja Sekhar。