我有以下方法:
@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”?
非常感谢。