带注释的帖子并获得相同的方法

时间:2011-02-20 08:50:46

标签: java spring rest

我可以知道是否可以用2个帖子注释一个方法并获取?

@RequestMapping(value = "/testonly", 
                method = RequestMethod.GET, RequestMethod.POST)
public String getSomething(){

}

2 个答案:

答案 0 :(得分:24)

method字段是一个数组,所以我希望这可以工作:

@RequestMapping(value = "/testonly",
                method = { RequestMethod.GET, RequestMethod.POST })

答案 1 :(得分:0)

它不应该将方法类型作为GET和POST传递。如果我们同时传递GET和POST,它将抛出意外的异常。

此致 Raja Sekhar。