mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:37:59 +08:00
add test
This commit is contained in:
parent
b7ad1e82d1
commit
bba5906118
@ -0,0 +1,22 @@
|
||||
package cn.hutool.http.server;
|
||||
|
||||
import cn.hutool.core.util.IdUtil;
|
||||
import cn.hutool.http.ContentType;
|
||||
import cn.hutool.http.HttpUtil;
|
||||
|
||||
public class Issue3723Test {
|
||||
public static void main(String[] args) {
|
||||
SimpleServer server = HttpUtil.createServer(8888);
|
||||
server.addFilter((req, res, chain) -> {
|
||||
String requestId = IdUtil.fastSimpleUUID();
|
||||
req.getHttpExchange().setAttribute("requestId", requestId);
|
||||
res.addHeader("X-Request-Id", requestId);
|
||||
|
||||
res.write("new Content");
|
||||
|
||||
chain.doFilter(req.getHttpExchange());
|
||||
});
|
||||
server.addAction("/", (req, res)-> res.write("Hello Hutool Server", ContentType.JSON.getValue()));
|
||||
server.start();
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user