REST风格,url不用显示?参数
第一步:在controller层添加注解
@RequestMapping("/hello/{id}")
public String view(@PathVariable String id, Model model){
return "hello";
}
第二步:jsp页面用 /hello 访问
第一步:在controller层添加注解
@RequestMapping("/hello/{id}")
public String view(@PathVariable String id, Model model){
return "hello";
}
第二步:jsp页面用 /hello 访问