通配符用法

@RequestMapping("/two")
public String dotwo(){
return "/WEB-INF/delete.jsp";
}
@RequestMapping("/*three")
public String dothree(){
return "/WEB-INF/delete.jsp";
}
@RequestMapping("/four*")
public String dofour(){
return "/WEB-INF/delete.jsp";
}
@RequestMapping("/**/five")
public String dofive(){
return "/WEB-INF/delete.jsp";
}
@RequestMapping("/*/six")
public String dosix(){
return "/WEB-INF/delete.jsp";
}

posted on 2017-08-20 09:18  溜氓  阅读(190)  评论(0编辑  收藏  举报

导航