这篇文章主要介绍了SpringMVC如何用Post方式重定向,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
SpringMVC用Post方式重定向
正常会以return "redirect:/XXX"这种方式直接重定向,但是这种方式是Get方式提交。
然而有些业务为了安全性必须要Post方式重定向。
Post方式重定向
我尝试过的方法:
/**
* 请求进行重定向
*/
@RequestMapping(value = “postPayAmount”, method = RequestMethod.GET)
public RedirectView postPayAmount(HttpSession session,ModelMap map) {
return new RedirectView(WsUrlConf.URI_PAY,true,false,false);//最后的参数为false代表以post方式提交请求
}
以上方法并不好用,我看了作者写的另一个解决办法
1、先封装一个Form,用他来发Post请求。
/**
* @Description: 后台进行POST请求(请写在代码执行结尾)
* @return void 返回类型
*/
public static void doBgPostReq(HttpServletResponse response,String postUrl,Map<String, ?> paramMap) throws IOException {
response.setContentType( "text/html;charset=utf-8");
PrintWriter out = response.getWriter();
out.println("<form name='postSubmit' method='post' action='"+postUrl+"' >");
for (String key : paramMap.keySet()) {
out.println("<input type='hidden' name='"+key+"' value='" + paramMap.get(key)+ "'>");
}
out.println("</form>");
out.println("<script>");
out.println(" document.postSubmit.submit()");
out.println("</script>");
}
2、在控制层直接调用
/**
* 进行请求
* @param request
* @return
* @throws IOException
*/
@RequestMapping(value = "doPostRedirectView.do", method = RequestMethod.GET)
@ResponseBody
public void doPostRedirectView(HttpServletRequest request,HttpServletResponse response,ModelMap map) throws IOException {
logger.debug("-----进入了doPostRedirectView----");
map.put("aaa", "aaaa");
HttpUtils.doBgPostReq(response, "doPostReq.do", map);
}
SpringMVC的Post提交405错误,只能使用重定向方式
前端文件
<form action="welcome1" method="post">
<input type="submit" value="post-请求转发">
</form>
<br>
<br>
<form action="welcome2" method="post">
<input type="submit" value="post-重定向">
</form>
后端控制器类
@Controller
public class SpringMvcController {
@RequestMapping(path = "welcome1",method = RequestMethod.POST)
public String welcome1(){
return "success"; //默认使用请求转发
}
@RequestMapping(path = "welcome2",method = RequestMethod.POST)
public String welcome2(){
return "redirect:success.html"; //使用重定向
}
}
使用@PostMapping注解的方式也一样。
配置类
# 应用名称
spring.application.name=sringmvc-blog
# 应用服务 WEB 访问端口
server.port=8081
# 后缀名
spring.mvc.view.suffix=.html
要跳转的success.html页面
<h1>springMVC 的 post</h1>
运行页面:
结果
请求转发的方式:
重定向的方式:
以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程学习网。
织梦狗教程
本文标题为:SpringMVC如何用Post方式重定向


基础教程推荐
猜你喜欢
- Java去掉小数点后面无效0的方案与建议 2023-02-18
- Java File类的概述及常用方法使用详解 2023-05-18
- 工厂方法在Spring框架中的运用 2023-06-23
- 一文了解Java 线程池的正确使用姿势 2023-06-17
- SpringBoot配置文件中密码属性加密的实现 2023-03-11
- 全局记录Feign的请求和响应日志方式 2023-01-09
- JVM分析之类加载机制详解 2023-04-06
- Java使用EasyExcel进行单元格合并的问题详解 2023-01-18
- Project Reactor源码解析publishOn使用示例 2023-04-12
- 用java实现扫雷游戏 2022-12-06