Spring MVC的引用變量PARAMS我有以下方法:從RequestMapping
@RequestMapping(value = "/path/to/{iconId}", params="size={iconSize}", method = RequestMethod.GET)
public void webletIconData(@PathVariable String iconId, @PathVariable String iconSize, HttpServletResponse response) throws IOException {
// Implementation here
}
我知道如何通過從使用@PathVariable的RequestMapping變量「webletId」,但我怎麼引用變量「iconSize 「從params?
非常感謝。