五陵年少金市东,银鞍白马渡春风。这篇文章主要讲述@RequestMapping定义不同的处理器映射规则相关的知识,希望能为你提供帮助。
通过@RequestMapping注解可以定义不同的处理器映射规则。
1. URL路径映射@RequestMapping(value="https://www.songbingjia.com/android/item")或@RequestMapping("/item")
value的值是数组,可以将多个url映射到同一个方法
/** * 查询商品列表 * @return */@RequestMapping(value = https://www.songbingjia.com/android/{"itemList", "itemListAll" })public ModelAndView queryItemList() {// 查询商品数据List< Item> list = this.itemService.queryItemList(); // 创建ModelAndView,设置逻辑视图名ModelAndView mv = new ModelAndView("itemList"); // 把商品数据放到模型中mv.addObject("itemList", list); return mv; }
【@RequestMapping定义不同的处理器映射规则】
2. 添加在类上面在class上添加@RequestMapping(url)指定通用请求前缀, 限制此类下的所有方法请求url必须以请求前缀开头
可以使用此方法对url进行分类管理,如下图:
文章图片
此时需要进入queryItemList()方法的请求url为:
http://127.0.0.1:8080/springmvc-web2/item/itemList.action
或者
http://127.0.0.1:8080/springmvc-web2/item/itemListAll.action
3. 请求方法限定除了可以对url进行设置,还可以限定请求进来的方法
- 限定GET方法
@RequestMapping(method = RequestMethod.GET)
如果通过POST访问则报错:
HTTP Status 405 - Request method \'POST\' not supported
例如:
@RequestMapping(value = "https://www.songbingjia.com/android/itemList",method = RequestMethod.POST)
- 限定POST方法
@RequestMapping(method = RequestMethod.POST)
如果通过GET访问则报错:
HTTP Status 405 - Request method \'GET\' not supported
- GET和POST都可以
@RequestMapping(method = {RequestMethod.GET,RequestMethod.POST})
推荐阅读
- Failed to resolve:com.android.support:appcompat-v7:报错处理
- Android-1Activity生命周期
- android指纹识别拼图游戏仿MIUI长截屏bilibili最美创意等源码
- Android ORC文字识别之识别×××号等(附源码)
- Android Studio:Gradle project refresh failed. 解决方法
- 移动自组网(MANET)
- 蜂窝系统基础架构
- 红外与无线电传输
- 无线局域网简介