Чи можу я мати додаткову змінну шляху із 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
буде працювати