O Spring MVC preenche o mapa @RequestParam <String, String>

Eu tenho o seguinte método no meu Spring MVC @Controller:

@RequestMapping(method = RequestMethod.GET)
public String testUrl(@RequestParam(value="test") Map<String, String> test) {   
    (...)
}

Eu chamo assim:

http://myUrl?test[A]=ABC&test[B]=DEF

No entanto, a variável RequestParam "test" é sempre nula

O que preciso fazer para preencher a variável "test"?

questionAnswers(3)

yourAnswerToTheQuestion