重定向

1、通过 redirect 重定向

请求界面链接:

testRedirect

Handler (Controller)类:

@RequestMapping("/testRedirect")

public String testRedirect(){

System.out.println("testRedirect ");

return "redirect:/index.jsp";

}

运行程序,处理完成后会返回index.jsp 界面,控制台打印 testRedirect.

2、通过 forward 重定向

请求界面链接:

testForward

Handler (Controller)类:

@RequestMapping("/testForward")

public String testForward(){

System.out.println("testForward ");

return "forward:/index.jsp";

}

运行程序,处理完成后会返回index.jsp 界面,控制台打印 testForward..

你可能感兴趣的:(重定向)