Spring MVC可以同时接收get和post方式传递的参数吗

2025-01-20 21:06:54
推荐回答(1个)
回答1:

可以的

@RequestMapping(value="/add",method=RequestMethod.GET)
public String add(Model model) {

一般要设置特定的method,像上边的代码,就是只处理get

不设置method属性,就都处理的。