Dengan Spring 3.0, dapatkah saya memiliki variabel jalur opsional?
Sebagai contoh
@RequestMapping(value = "/json/{type}", method = RequestMethod.GET)
public @ResponseBody TestBean testAjax(
HttpServletRequest req,
@PathVariable String type,
@RequestParam("track") String track) {
return new TestBean();
}
Di sini saya ingin /json/abc
atau /json
memanggil metode yang sama.
Satu solusi nyata menyatakan type
sebagai parameter permintaan:
@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();
}
dan kemudian /json?type=abc&track=aa
atau /json?track=rr
akan bekerja