知识的领域是无限的,我们的学习也是无限期的。这篇文章主要讲述springmvc-@RequestMapping相关的知识,希望能为你提供帮助。
*
@RequestMapping
》用于将url跟方法进行绑定,通过访问指定url执行相应的方法
@RequestMapping("/getCustList") public ModelAndView getCustList(){List< Customer> list = customerService.getCustList(null); ModelAndView mav = new ModelAndView(); mav.addObject("list",list); mav.setViewName("/index.jsp"); return mav; }
* 窄化url映射
》说的很专业,其实就是在类上在加个url根路径,很想sturts2时的命名空间,起到类之间url管理,放置url冲突
RequestMapping("/CustomerHandler") public class CustomerHandler {}
*限制http请求类型
》@RequestMapping有一个属性method数组,可以在里面限制请求的类型
@RequestMapping(value="https://www.songbingjia.com/getCustList",method = {RequestMethod.GET,RequestMethod.POST}) public ModelAndView getCustList(){}
【springmvc-@RequestMapping】
推荐阅读
- rem在手机移动端app中的兼容适配问题
- Android Kotlin opencv MatOfPoint 转 MatOfPoint2f 报错踩坑 (解决)
- 介绍 brick: 用于快速开发 webapp 的自定义标签组件
- Android Android studio 底部导航栏的基本实现
- Android 给服务器发送网络请求
- Appium---Android的keycode键值
- Android 开发 VectorDrawable 矢量图 用一张矢量图实现按下改变颜色的效果
- Android 中加载本地Html 跨域问题,http协议允许加载
- 提交APP到三星应用市场一直提示不符合 Galaxy特色体验的类别条件