您的位置:首页 > 编程语言 > Java开发

学习SpringMVC(十四)之关于重定向

2016-05-22 13:47 447 查看
一般情况下,contrller方法返回的字符串的值会被当成逻辑视图名处理。

但是如果返回的字符串中带forward:或redirect:前缀时,SpringMVC会对他们进行特殊处理,将forward:和redirect:当成指示符,其后字符串作为URL来处理

例如:

forward:/index.jsp 将会完成一个到index.jsp页面的转发操作

redirect:/index.jsp 将会完成一个到index.jsp页面的重定向操作

在controller中:

package com.cgf.springmvc.handlers;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

@RequestMapping(value="/springmvc")
@Controller
public class MyRedirect {

@RequestMapping(value="/testMyRedirect")
public String testMyRedirect(){
System.out.println("testMyRedirect");
return "redirect:/index.jsp";
}

}
在index.jsp页面中:

<a href="springmvc/testMyRedirect">Test MyRedirect</a><br>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: