关于重定向我们用的比较多的还是redirect:重定向,默认发送的get请求。
return "redirect:/index";
但有时候请求地址必须为post请求,比如security登录就只能接收post请求,下面来看一下如何后台如何发送post请求响应重定向。
首先可以定义一个map,用于存放参数键值对
Map<String, String> parameter = new HashMap<String, String>();
添加参数方法
public void setParameter(String key, String value) {
this.parameter.put(key, value);
发送请求代码:
//url参数为请求地址
public void sendByPost(String url) throws IOException {
this.response.setContentType("text/html");
response.setCharacterEncoding("utf-8");
response.setContentType("text/html;charset=utf-8");
PrintWriter out = this.response.getWriter();
out.println("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">");
out.println("<HTML>");
out.println(" <HEAD>");
out.println(" <meta http-equiv=Content-Type content=\"text/html; charset=utf-8\">");
out.println(" <TITLE>loading</TITLE>");
out.println(" <meta http-equiv=\"Content-Type\" content=\"text/html charset=GBK\">\n");
out.println(" </HEAD>");
out.println(" <BODY>");
out.println("<form name=\"submitForm\" action=\"" + url + "\" method=\"post\">");
Iterator<String> it = this.parameter.keySet().iterator();
while (it.hasNext()) {
String key = it.next();
out.println("<input type=\"hidden\" name=\"" + key + "\" value=\"" + this.parameter.get(key) + "\"/>");
out.println("</from>");
out.println("<script>window.document.submitForm.submit();</script> ");
out.println(" </BODY>");
out.println("</HTML>");
out.flush();
out.close();
RedirectWithPost请求类全部代码
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
* 用POST方式 重定向
* @author royFly
public class RedirectWithPost {
Map<String, String> parameter = new HashMap<String, String>();
HttpServletResponse response;
public RedirectWithPost(HttpServletResponse response) {
this.response = response;
public void setParameter(String key, String value) {
this.parameter.put(key, value);
public void sendByPost(String url) throws IOException {
this.response.setContentType("text/html");
response.setCharacterEncoding("utf-8");
response.setContentType("text/html;charset=utf-8");
PrintWriter out = this.response.getWriter();
out.println("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">");
out.println("<HTML>");
out.println(" <HEAD>");
out.println(" <meta http-equiv=Content-Type content=\"text/html; charset=utf-8\">");
out.println(" <TITLE>loading</TITLE>");
out.println(" <meta http-equiv=\"Content-Type\" content=\"text/html charset=GBK\">\n");
out.println(" </HEAD>");
out.println(" <BODY>");
out.println("<form name=\"submitForm\" action=\"" + url + "\" method=\"post\">");
Iterator<String> it = this.parameter.keySet().iterator();
while (it.hasNext()) {
String key = it.next();
out.println("<input type=\"hidden\" name=\"" + key + "\" value=\"" + this.parameter.get(key) + "\"/>");
out.println("</from>");
out.println("<script>window.document.submitForm.submit();</script> ");
out.println(" </BODY>");
out.println("</HTML>");
out.flush();
out.close();
实例化RedirectWithPost请求类
RedirectWithPost redirectWithPost = new RedirectWithPost(response);
//redirectUrl请求地址
String redirectUrl = "/login";
添加请求参数
redirectWithPost.setParameter("username", nickname);
redirectWithPost.setParameter("password", openid);
调用方法,发送请求
redirectWithPost.sendByPost(redirectUrl);
关于重定向我们用的比较多的还是redirect:重定向,默认发送的get请求。return "redirect:/index";但有时候请求地址必须为post请求,比如security登录就只能接收post请求,下面来看一下如何后台如何发送post请求响应重定向。首先可以定义一个map,用于存放参数键值对Map<String, String> parameter =...
前后端分离时后端一般请求后是返回指定的json格式数据,但有些时候添加或修改数据后,再需要查询最新的数据返回给前端,一种办法就是在当前请求api里将所有操作都完成返回给数据.但当我们有查询数据的api时,就可以共用了.可以重定向或请求转发到查询数据的api上来实现.
可通过ModelAndView跳转:
@PostMapping("/project")
public ModelAndView ad...
response.sendRedirect使用的是get方式提交,如果想要post,看下面
public static void redirect(String url, Map,String> params, HttpServletResponse response) throws IOException {
response.setContentType("text/html")
//url参数为请求地址
public void sendByPost(String url) throws IOException {
this.response.setContentType(“text/html”);
response.setCharacterEncoding(“utf-8”);
response.setContentType(“text/html;charset=utf-8”);
PrintWriter out = this.response.getWriter(
通过fluent-hc编写了一个HttpUtil类,该类包含post form, post json, get 等等方法。此时我需要用该util类来发送请求并保存返回对象body。可是,向某个url 发送post form后,总是会引发httpResponseException, 进入源码查看原因getStatusCode&gt;= 300 。
服务器端拒绝当前请求
在django中,ORM(对象关系映射器—object-relational mapper)任务是:模型化数据库,创建数据库由另外一个系统负责(迁移–migration),迁移任务是根据对models.py文件的改动情况,添加或者删除表和列
models.py
from django.db import models
class Item(models.Model):
text=models.TextField(default='')
tests.py
'''from django
当使用HttpClient库发送POST请求时,如果服务器返回重定向响应,可以通过设置HttpClient实例的重定向策略来自动处理重定向。默认情况下,HttpClient实例会禁用自动重定向,可以使用`setRedirectStrategy()`方法来启用自动重定向。例如:
```java
CloseableHttpClient httpClient = HttpClients.createDefault();
HttpPost httpPost = new HttpPost(url);
// 设置请求参数
List<NameValuePair> params = new ArrayList<>();
params.add(new BasicNameValuePair("param1", "value1"));
params.add(new BasicNameValuePair("param2", "value2"));
httpPost.setEntity(new UrlEncodedFormEntity(params, "UTF-8"));
// 设置重定向策略
LaxRedirectStrategy redirectStrategy = new LaxRedirectStrategy();
httpClient = HttpClients.custom().setRedirectStrategy(redirectStrategy).build();
// 发送POST请求
CloseableHttpResponse response = httpClient.execute(httpPost);
在上述代码中,我们使用`setRedirectStrategy()`方法将重定向策略设置为`LaxRedirectStrategy`,这个策略不会自动重定向POST请求,但是会自动重定向GET请求。
如果你想在重定向时保留POST请求的请求体,需要将HTTP方法设置为`LaxRedirectStrategy`时自动重定向POST请求,但是会将请求体作为GET请求的查询参数添加到重定向URL中。如果你想保留请求体的话,需要在`LaxRedirectStrategy`的实例中重写`getRedirect()`方法,自己实现POST请求的重定向。