SpringMVC(二八) 重定向

在控制器中在返回的字符串中使用 return  "redirect:/index.jsp" 的形式,使返回重定向到另外一个页面。

控制器参考代码:

SpringMVC(二八) 重定向
package com.tiekui.springmvc.handlers;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping; @Controller
public class RedirectTest { @RequestMapping("testRedirect")
public String testRedirect(){
return "redirect:helloworld";
}
}
SpringMVC(二八) 重定向

访问视图代码:

<a href="testRedirect">Test Redirect Video 28</a>
上一篇:pfSense软件防火墙安装配置


下一篇:java中常见的几种异常