I am getting a following GET request http://localhost:8080/flamingo-json/en/web/Mobile/our-program/Tiers-recognition-Redesigned/rewards-program-new.html
For the above url I have defined the following Mapping in spring rest controller
@GetMapping(value = "/flamingo-json/{language}/{platform}/{page:.+}")
@ResponseBody
public String getAboutUs(@PathVariable(value = "language", required = false) String language,@PathVariable String platform,
@PathVariable String page){
logger.info("Serving " + page + " page for the request");
return aboutUsService.getPageFromDb(page, language, platform);
but I am unable to get "Mobile/our-program/Tiers-recognition-Redesigned/rewards-program-new.html" value in the Path variable 'page' and I am getting 404.