关于SpringMVC跳转问题

Controlle 能够接受到请求,但是返回的结果在浏览器的response里面!页面并没有跳转~
图片说明

@RequestMapping(value = "/getxxxList.html")
public String getxxxList(RedirectAttributes redirectAttributes){
redirectAttributes.addAttribute("param1", value1);
redirectAttributes.addAttribute("param2", value2);
return "redirect:/xxx/toController";//重定向
}
貌似需要增加控制进行重定向噢。

问题已经解决,请求放在AJAX里无法进行页面跳转。

                                                                                                                    Never Stop learning