@PathVariable
将路径传递为入参
@RequestMapping("/{page}") public String showPage(@PathVariable String page){ return page; }