春季MVC填充@RequestParam地图<字符串,字符串>
2022-09-04 20:03:55
我在春季MVC@Controller中有以下方法:
@RequestMapping(method = RequestMethod.GET)
public String testUrl(@RequestParam(value="test") Map<String, String> test) {
(...)
}
我这样称呼它:
http://myUrl?test[A]=ABC&test[B]=DEF
但是,“测试”请求参数变量始终为空
我必须做什么才能填充“test”变量?