В Spring 3.0 я могу иметь необязательную переменную пути?
Например
@RequestMapping(value = "/json/{type}", method = RequestMethod.GET)
public @ResponseBody TestBean testAjax(
HttpServletRequest req,
@PathVariable String type,
@RequestParam("track") String track) {
return new TestBean();
}
Здесь я хотел бы /json/abc
или /json
вызвать тот же метод.
Один очевидный обходной путь объявляется type
как параметр запроса:
@RequestMapping(value = "/json", method = RequestMethod.GET)
public @ResponseBody TestBean testAjax(
HttpServletRequest req,
@RequestParam(value = "type", required = false) String type,
@RequestParam("track") String track) {
return new TestBean();
}
а потом /json?type=abc&track=aa
или /json?track=rr
будет работать