1
@RequestMapping(value = "/Foo/{id}/{friendlyUrl:*}", method = RequestMethod.GET)
public ModelAndView getFoo(@PathVariable final Long id, @PathVariable final String friendlyUrl, final Principal principal) {
/* then match friendlyUrl, 
 * if it doesn't match use redirect 
 * view to send to correct place*/
}

我在哪里使用 asterix 我的 ide 返回错误?

4

1 回答 1

1

如果您打算使用正则表达式进行匹配,那么我猜您想要的是

"/Foo/{id}/{friendlyUrl:.*}"

根据文档,模式必须是{varName:regex}.

于 2012-12-29T16:59:01.783 回答