我想使用spring-mvc创建一个方法并在其上配置GET POST:
@RestController
public class MyServlet {
@RequestMapping(value = "test",method = {RequestMethod.GET,RequestMethod.POST})
public void test(@Valid MyReq req) {
//MyReq contains some params
}
}
问题:使用上面的代码,任何POST请求都会导致一个空的MyReq对象.
如果我将方法签名更改为@RequestBody @Valid MyReq req,则帖子有效,但GET请求失败.
如果bean被用作输入参数,那么就不可能在同一个方法上一起使用get和post吗?
最佳答案
您问题的最佳解决方案似乎是这样的:
原文链接:https://www.f2er.com/spring/431600.html@RestController
public class MyServlet {
@RequestMapping(value = "test",method = {RequestMethod.GET})
public void testGet(@Valid @RequestParam("foo") String foo) {
doStuff(foo)
}
@RequestMapping(value = "test",method = {RequestMethod.POST})
public void testPost(@Valid @RequestBody MyReq req) {
doStuff(req.getFoo());
}
}