首页 > 学院 > 开发设计 > 正文

@RequestMapping注解说明

2019-11-14 12:30:04
字体:
来源:转载
供稿:网友
特性url映射:定义Controller方法对应的url,进行处理器映射使用窄化请求映射:为了对url进行分类管理,可以在@Controller下定义根路径,最终访问url是根路径+子路径例如:@Controller@RequestMapping("/user")public class UsersController {@RequestMapping("/queryUsers")public ModelAndView queryUsers() throws Exception {}等同于@Controllerpublic class UsersController {@RequestMapping("/user/queryUsers")public ModelAndView queryUsers() throws Exception {}限制http请求方法:处于安全性考虑,对http的链接进行方法限制// 限制http请求方法,可以post和get@RequestMapping(value="/user",method={RequestMethod.POST,RequestMethod.GET})
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表