本文共 411 字,大约阅读时间需要 1 分钟。
Spring MVC项目中页面重定向一般使用return "redirect:/other/controller/";即可。而Spring Boot使用了@RestController注解,上述写法只能返回字符串,解决方法如下:
将一个HttpServletResponse
参数添加到处理程序方法然后调用response.sendRedirect("some-url");
@RestControllerpublic class FooController { @RequestMapping("/foo") void handleFoo(HttpServletResponse response) throws IOException { response.sendRedirect("some-url"); }}
参考:
==>如有问题,请联系我:easonjim#163.com,或者下方发表评论。<==转载地址:http://jznpo.baihongyu.com/