我想知道是否可以从@MatrixVariable
获取值到简单地图。
例如,我有网址:http://localhost:8080/myapp/products/price;low=200;high=400
我知道我可以通过方法获得这个值:
@RequestMapping("/{price}")
public String filterProducts(@MatrixVariable(pathVar = "price") Map<String, List<String>> priceFilter, Model model);
如何将网址参数传递给变量Map<String, Integer> priceFilter
?可能吗?我怎么能这样做?