Spring MVC mapping Guava Multimap
问题 My controller can't map a Google Guava Multimap coming from the frontend. I send from my Javascript this object: {1:[true,false], 2:[false,true], ...}. If I use a standard java.util.Map<Long, List<Boolean>> everything works fine. But not with the Guava Multimap . Do I have to configure Spring to use some custom converter, or what is the problem? The controller is: @RequestMapping(path = "/myurl", method = RequestMethod.POST, produces = CotrollerKonstanten.JSON_UTF8) public long myMethod(