springmvc中的页面跳转方式有转发和重定向两种;
1)转发:直接return对应的页面地址即可;
@RequestMapping("/hello") public String hello(String name,Integer age){ System.out.println("name:"+name+",age:"+age); return "index.jsp"; }
2)重定向:return “redirect:重定向的地址”;
//重定向演示 @RequestMapping("/redirectTest") public String redirectTest(){ return "redirect:/detail2"; }