1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| /**
* Display the product detail page for a product with id containing a dot.
*/
@RequestMapping(value = { "/product/{codePrefixe}.{codeSuffixe}" }, //
method = RequestMethod.GET)
protected ModelAndView getDetailProductPageWithIdContainDot(@PathVariable String codePrefixe,
@PathVariable String codeSuffixe) {
return getDetailProductPage(codePrefixe + "." + codeSuffixe);
}
/**
* Display the product detail page for a product with id containing a dot.
*/
@RequestMapping(value = { "/product/{codePrefixe}{.}{codeSuffixe}" }, //
method = RequestMethod.GET)
protected ModelAndView getDetailProductPageWithIdContainDot2(@PathVariable String codePrefixe,
@PathVariable String dot,
@PathVariable String codeSuffixe) {
return getDetailProductPage(codePrefixe + "." + codeSuffixe);
} |
Partager