重定向和转发
Posted 小布丁value
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了重定向和转发相关的知识,希望对你有一定的参考价值。
数据处理及跳转
@Controller
public class ResultSpringMVC
@RequestMapping("/rsm/t1")
public String test1()
//转发
return "/index.jsp";
@RequestMapping("/rsm/t2")
public String test2()
//转发二
return "forward:/index.jsp";
@RequestMapping("/rsm/t3")
public String test3()
//重定向
return "redirect:/index.jsp";
@Controller
public class ResultSpringMVC2
@RequestMapping("/rsm2/t1")
public String test1()
//转发
return "test";
@RequestMapping("/rsm2/t2")
public String test2()
//重定向
return "redirect:/index.jsp";
//return "redirect:hello.do"; //hello.do为另一个请求/
以上是关于重定向和转发的主要内容,如果未能解决你的问题,请参考以下文章