Spring MVC 引用 RequestMapping 中的参数变量
2022-09-01 21:51:17
我有以下方法:
@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”?
多谢。