第一步:在controller层添加注解
REST风格,url不用显示?参数

@RequestMapping("/hello/{id}")
    public String view(@PathVariable String id, Model model){
        return "hello";
    }

第二步:jsp页面用 /hello 访问

相关文章: