在用springboot的时候,默认controller层访问到template下的动态页面,但有时候又想直接访问static下的静态页面
默认是这样请求的
@RequestMapping("/scene")
public String scene() {
return "pages/scene/scene_list"; //这里请求的路径默认是templates/pages/scene/scene_list.html页面
}
上面请求的是动态页面,那如果需要请求到static页面,用下面重定向方式就可以:
@RequestMapping("/sb2")
public String sb2() {
return "redirect:sb-admin-2/index.html";
}
此时请求的路径为:static/sb-admin-2/index.html页面,这样可以实现动态和静态页面的轻松选择
网友评论