Con Spring 3.0, posso avere una variabile di percorso opzionale?
Per esempio
@RequestMapping(value = "/json/{type}", method = RequestMethod.GET)
public @ResponseBody TestBean testAjax(
HttpServletRequest req,
@PathVariable String type,
@RequestParam("track") String track) {
return new TestBean();
}
Qui vorrei /json/abc
o /json
chiamare lo stesso metodo.
Una soluzione ovvia dichiara type
come parametro di richiesta:
@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();
}
e poi /json?type=abc&track=aa
o /json?track=rr
funzionerà