第一步:在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 访问
相关文章: