SpringMVC知识点总结

整理文档很辛苦,赏杯茶钱您下走!

免费阅读已结束,点击下载阅读编辑剩下 ...

阅读已结束,您可以下载文档离线阅读编辑

资源描述

Springwebmvc和Struts2都属于表现层的框架,它是Spring框架的一部分,是一个前端web框架springMVC的处理流程Controller跳转到另一个Controller1.需求背景需求:springMVC框架controller间跳转,需重定向。有几种情况:不带参数跳转,带参数拼接url形式跳转,带参数不拼接参数跳转,页面也能显示。2.解决办法需求有了肯定是解决办法了,一一解决,说明下spring的跳转方式很多很多,我这里只是说一些自我认为好用的,常用的,spring分装的一些类和方法。不带参数的跳转(1)我在后台一个controller跳转到另一个controller,为什么有这种需求呢,是这样的。我有一个列表页面,然后我会进行新增操作,新增在后台完成之后我要跳转到列表页面,不需要传递参数,列表页面默认查询所有的。前端控制器DispatcherServlet用户请求Handler处理器处理业务处理,返回处理结果根据请求的url找到处理器返回处理结果Jsp渲染结果处理结果传递给jsp使用request传递返回html响应用户方式一:使用ModelAndViewreturnnewModelAndView(redirect:/toList);这样可以重定向到toList这个方法方式二:返回Stringreturnredirect:/toList;其它方式:其它方式还有很多,这里不再做介绍了,比如说response等等。这是不带参数的重定向。带参数拼接url的跳转第二种情况,列表页面有查询条件,跳转后我的查询条件不能丢掉,这样就需要带参数的了,带参数可以拼接url方式一:自己手动拼接urlnewModelAndView(redirect:/toList?param1=+value1+¶m2=+value2);这样有个弊端,就是传中文可能会有乱码问题。方式二:用RedirectAttributes,这个是发现的一个比较好用的一个类这里用它的addAttribute方法,这个实际上重定向过去以后你看url,是它自动给你拼了你的url。这种方式就相当于重定向之后,在url后面拼接参数,这样在重定向之后的页面或者控制器再去获取url后面的参数就可以了,但这个方式因为是在url后面添加参数的方式,所以暴露了参数,有风险使用方法:attr.addAttribute(param,value);returnredirect:/namespace/toController;这样在toController这个方法中就可以通过获得参数的方式获得这个参数,再传递到页面。过去的url还是和方式一一样的。带参数不拼接参数跳转带参数不拼接url页面也能拿到值(重点是这个)一般我估计重定向到都想用这种方式:@RequestMapping(/save)publicStringsave(@ModelAttribute(form)Beanform,RedirectAttributesattr)throwsException{Stringcode=service.save(form);if(code.equals(000)){attr.addFlashAttribute(name,form.getName());这种方式也能达到重新向带参,而且能隐藏参数,其原理就是放到session中,session在跳到页面后马上移除对象。所以你刷新一下后这个值就会丢掉attr.addFlashAttribute(success,添加成功!);returnredirect:/index;}else{attr.addAttribute(projectName,form.getProjectName());attr.addAttribute(enviroment,form.getEnviroment());attr.addFlashAttribute(msg,添加出错!错误码为:+rsp.getCode().getCode()+,错误为:+rsp.getCode().getName());returnredirect:/maintenance/toAddConfigCenter;}}@RequestMapping(/index)PublicStringsave(@ModelAttribute(form)Beanform,RedirectAttributesattr)throwsException{returnredirect:/main/list;}页面取值直接用el表达式就能获得到(例如:${projectName}),这里的原理是放到session中,session在跳到页面后马上移除对象。所以你刷新一下后这个值就会丢掉。${projectName}的值,这要想用在js中必须先放在页面的scripttype=text/javascriptVarprojectName=${projectName}';/script总结最底层还是两种跳转,只是spring又进行了封装而已,所以说跳转的方式其实有很多很多种,你自己也可以封一个,也可以用最原始的response来,也没有问题。@RequestParam与@PathVariable的区别顾名思义,@PathVariable和@RequestParam,分别是从路径里面去获取变量,也就是把路径当做变量,后者是从请求里面获取参数。从你的请求来看:/Springmvc/user/page.do?pageSize=3&pageNow=2pageSize和pageNow应该是属于参数而不是路径,所以应该添加@RequestParam的注解。如果做成如下URL,则可以使用@PathVariable/Springmvc/user/page/2/3.do但这样的话语义就不明确的,所以一般来说分页参数都用参数传递。两者的作用都是将request里的参数的值绑定到contorl里的方法参数里的,区别在于,url不同@PathVariable的url是这样的:参数值@RequestMapping(/bookings/{booking})publicStringgetBooking(@PathVariableLongbooking){}而@RequestParam的url是这样的:参数名=参数值@RequestMapping(method=RequestMethod.GET)publicStringsetupForm(@RequestParam(petId)intpetId,ModelMapmodel){Petpet=this.clinic.loadPet(petId);model.addAttribute(pet,pet);returnpetForm;}详解RequestMappingvalue:指定请求的实际地址,默认RequestMapping(....str...)即为value的值;value的uri值为以下三类:A)可以指定为普通的具体值;B)可以指定为含有某变量的一类值(URITemplatePatternswithPathVariables);C)可以指定为含正则表达式的一类值(URITemplatePatternswithRegularExpressions);1.@RequestMapping(value=/owners/{ownerId},method=RequestMethod.GET)2.@RequestMapping(/spring-web/{symbolicName:[a-z-]+}-{version:\d\.\d\.\d}.{extension:\.[a-z]})method:指定请求的method类型,GET、POST、PUT、DELETE等;Consumes:指定处理请求的提交内容类型(Content-Type),例如application/json,text/html;1.@Controller2.@RequestMapping(value=/pets,method=RequestMethod.POST,consumes=application/json)3.publicvoidaddPet(@RequestBodyPetpet,Modelmodel){4.//implementationomitted5.}方法仅处理requestContent-Type为“application/json”类型的请求。Produces:指定返回的内容类型,仅当request请求头中的(Accept)类型中包含该指定类型才返回;1.@Controller2.@RequestMapping(value=/pets/{petId},method=RequestMethod.GET,produces=application/json)3.@ResponseBody4.publicPetgetPet(@PathVariableStringpetId,Modelmodel){5.//implementationomitted6.}方法仅处理request请求中Accept头中包含了application/json的请求,同时暗示了返回的内容类型为application/json;Params:指定request中必须包含某些参数值是,才让该方法处理。1.@Controller2.@RequestMapping(/owners/{ownerId})3.publicclassRelativePathUriTemplateController{4.5.@RequestMapping(value=/pets/{petId},method=RequestMethod.GET,params=myParam=myValue)6.publicvoidfindPet(@PathVariableStringownerId,@PathVariableStringpetId,Modelmodel){7.//implementationomitted8.}9.}仅处理请求中包含了名为“myParam”,值为“myValue”的请求;Headers:指定request中必须包含某些指定的header值,才能让该方法处理请求。1.@Controller2.@RequestMapping(/owners/{ownerId})3.publicclassRelativePathUriTemplateController{4.5.@RequestMapping(value=/pets,method=RequestMethod.GET,headers=Referer=)6.publicvoidfindPet(@PathVariableStringownerId,@PathVariableStringpetId,Modelmodel){7.//implementationomitted8.}9.}仅处理request的header中包含了指定“Refer”请求头和对应值为“”的请求;

1 / 7
下载文档,编辑使用

©2015-2020 m.777doc.com 三七文档.

备案号:鲁ICP备2024069028号-1 客服联系 QQ:2149211541

×
保存成功