@RequestMapping(value = "/channel/{path}")
public String pageRedirect(HttpServletRequest request,ModelMap modelMap,
@PathVariable("path") String path){
此处的path参数会自动加入request作用域,页面上${path}直接获取效
return "page";
}
<a href="/**/channel/${ptah}">这样就可以访问了</a>
public String pageRedirect(HttpServletRequest request,ModelMap modelMap,
@PathVariable("path") String path){
此处的path参数会自动加入request作用域,页面上${path}直接获取效
return "page";
}
<a href="/**/channel/${ptah}">这样就可以访问了</a>