文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Spring MVC中使用Controller如何进行重定向

2024-04-02 19:55

关注

Controller如何进行重定向

Spring MVC中进行重定向

本人知道的有两种方式

方法返回的URI(相对路径)中加上"redirect:"前缀,声明要重定向到该地址

使用HttpServletResponse对象进行重定向

注意

"redirect:"后面跟着的是"/"和不跟着"/"是不一样的:

1) "redirect:"后面跟着"/": 说明该URI是相对于项目的Context ROOT的相对路径

2) "redirect:"后面没有跟着"/": 说明该URI是相对于当前路径

具体看demo理解这两种方式的实现

RedirectURLController.java:


package edu.mvcdemo.controller; 
import java.io.IOException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.log4j.Logger;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import edu.mvcdemo.utils.StringUtils;
 

@Controller
@Scope("singleton") //只实例化一个bean对象(即每次请求都使用同一个bean对象),默认是singleton
@RequestMapping("/redirect")
public class RedirectURLController {	
	private Logger logger = Logger.getLogger(RedirectURLController.class);	
	
	
	@RequestMapping(value="/demo1", method=RequestMethod.GET)
	private String testRedirect1(){
		//注意:"redirect:/hello/world" 和 "redirect:hello/world"这两种写法是不一样的!!
		//     本案例中:
		//     "redirect:/hello/world" 重定向到的URL路径为:协议://服务器IP或服务器主机名:端口号/项目的Context ROOT/hello/world
		//     "redirect:hello/world"  重定向到的URL路径为:协议://服务器IP或服务器主机名:端口号/项目的Context ROOT/redirect/hello/world
		return "redirect:/hello/world";
	}
	
	
	@RequestMapping(value="/demo2", method=RequestMethod.GET)
	private void testRedirect2(HttpServletRequest request ,HttpServletResponse response){
        String pathPrefix = StringUtils.getWebContextPath(request);
        String redirectURL = pathPrefix + "/hello/world";
		logger.info(redirectURL);
		try {
			response.sendRedirect(redirectURL);
		} catch (IOException e) {
			logger.error(StringUtils.getExceptionMessage(e));
		}
	} 
}

StringUtils.java:


package edu.mvcdemo.utils; 
import java.io.PrintWriter;
import java.io.StringWriter;
import javax.servlet.http.HttpServletRequest; 

public class StringUtils {	
    
    public static String getExceptionMessage(Exception e) { 
        StringWriter stringWriter = new StringWriter();
        PrintWriter printWriter = new PrintWriter(stringWriter);
        e.printStackTrace(printWriter); 
        return stringWriter.toString();
    }    
 
    
    public static String getWebContextPath(HttpServletRequest request){
		StringBuilder webContextPathBuilder = new StringBuilder();
		webContextPathBuilder.append(request.getScheme())
		                     .append("://")
		                     .append(request.getServerName())
		                     .append(":")
		                     .append(request.getServerPort())
		                     .append(request.getContextPath());
		return webContextPathBuilder.toString();
    } 
}

效果:

页面输入 http://localhost:8080/MavenSpringMvcDemo/redirect/demo1 或 http://localhost:8080/MavenSpringMvcDemo/redirect/demo2 都会重定向到http://localhost:8080/MavenSpringMvcDemo/hello/world

controller请求转发,重定向

了解

转发(forward):浏览器地址不会改变,始终是同一个请求。

重定向(sendRedirect):浏览器地址会改变,是两个请求。

转发forward

有异常抛出就好了:

跳首页:浏览器的url地址不变.可能会找不到静态文件:


  @GetMapping(value = "/index")
    @ApiOperation("首页")
    public void index(HttpServletRequest request, HttpServletResponse response)  throws Exception  {
   request.getRequestDispatcher("/index.html").forward(request, response);
   }

重定向redirect

controller中返回值为void


 @GetMapping(value = "/index")
    @ApiOperation("首页")
    public void index(HttpServletRequest request, HttpServletResponse response) throws IOException {
        response.sendRedirect("/index.html");
    }

第三种方式:controller中返回值为ModelAndView


return new ModelAndView(“redirect:/toList”);

以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程网。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯