@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 返回错误?