This commit is contained in:
Looly 2023-04-20 21:27:34 +08:00
parent 4fa9fb8606
commit d307a95f37
3 changed files with 78 additions and 46 deletions

View File

@ -0,0 +1,28 @@
/*
* Copyright (c) 2023 looly(loolly@aliyun.com)
* Hutool is licensed under Mulan PSL v2.
* You can use this software according to the terms and conditions of the Mulan PSL v2.
* You may obtain a copy of Mulan PSL v2 at:
* http://license.coscl.org.cn/MulanPSL2
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.http;
import org.junit.Ignore;
import org.junit.Test;
public class Issue3074Test {
@Test
@Ignore
public void bodyTest() {
HttpUtil.createPost("http://localhost:8888/body")
.contentType(ContentType.JSON.getValue())
.body("aaa")
.execute();
}
}

View File

@ -10,8 +10,8 @@
* See the Mulan PSL v2 for more details.
*/
import cn.hutool.http.HttpGlobalConfig;
import cn.hutool.http.HttpUtil;
package cn.hutool.http;
import org.junit.Ignore;
import org.junit.Test;

View File

@ -55,6 +55,10 @@ public class SimpleServerTest {
res.write("0");
Console.log("Write 0 OK");
})
.addAction("/body", (req, resp) -> {
Console.log(req.getBody());
resp.write(req.getBody());
})
.start();
}
}