You can also try something like:
@RequestMapping(value="/category/{path}/**", method = RequestMethod.GET) public void categoryTest(@PathVariable("path") String path, HttpServletRequest request) throws Exception { String remainingPaths = (String) request.getAttribute(HandlerMapping.PATH_WITHIN_HANDLER_MAPPING_ATTRIBUTE); logger.debug("path = " + path + "/" + remainingPaths); }
source share