springmvc-@RequestMapping

知识的领域是无限的,我们的学习也是无限期的。这篇文章主要讲述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】 

    推荐阅读