@RequestMapping
我的Spring MVC 控制器中有以下内容:
@RequestMapping(value = "{personId}/rtbc-{personId}-badge.pdf", method = RequestMethod.GET)
public ModelAndView produceBadgePdf(@PathVariable Integer personId){
// rest of the code
}
我的问题是:如何确保personId
s 中的两个 s@RequestMapping
匹配整数?我应该让变量名不同吗?或者我可以保持变量名相同吗?