我的问题是控制器上的动态网址。我有类别树。我的类别有n个子类别。
我的网址:www.xyz.com/category/mainCategory/subCategory/subCategory/subCategory/subCategory
@Controller
@RequestMapping(value="/category/**")
public class CategoryController {
????
public void init()
}
如何定义动态请求映射?。
答案 0 :(得分:8)
您也可以尝试以下方式:
@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);
}