使用Spring mvc接收整个url地址及参数时注意事项

时间:2022-04-21 10:01:39

使用Spring mvc接收整个url地址及参数时注意事项:
url= http://baidu?oid=9525c1f2b2cd45019b30a37bead6ebbb&td=2015-08-22&ot=a31f30c7905b4c8cb663e4d93de285c8
@RequestMapping(value="/aa",method=RequestMethod.GET)
public ModelAndView aa(HttpServletRequest request,String url){
ModelAndView mav = new ModelAndView("redirect:"+url);
return mav;
}
这样到controller里面后,url中&符号后面的参数会都丢失。
使用encodeURIComponent(url); 在controller中就获得这个正确的地址。