如何使用Spring MVC使用@RequestParam捕获多个参数?
假设单击了超链接,并使用以下参数列表触发了URL myparam=myValue1&myparam=myValue2&myparam=myValue3
。现在如何@RequestParam在Spring MVC
中捕获所有使用的参数?
我的要求是我必须捕获所有参数并将它们放在地图中。
请帮忙!
回答:
@RequestMapping(value = "users/newuser", method = RequestMethod.POST) public String saveUser(@RequestParam Map<String,String> requestParams) throws Exception{
String userName=requestParams.get("email");
String password=requestParams.get("password");
//perform DB operations
return "profile";
}
你可以按上述方式使用RequestParam。
以上是 如何使用Spring MVC使用@RequestParam捕获多个参数? 的全部内容, 来源链接: utcz.com/qa/431464.html