public static FullHttpRequest newFullRequest(
HttpMethod method, String urlPath, ByteBuf payload, ContentType contentType) {
FullHttpRequest request =
new DefaultFullHttpRequest(HttpVersion.HTTP_1_1, method, urlPath, payload);
request.headers().set(CONTENT_TYPE, contentType.value);
request.headers().setInt(CONTENT_LENGTH, payload.readableBytes());
return request;
}
Recipes.java 文件源码
java
阅读 26
收藏 0
点赞 0
评论 0
项目:xrpc
作者:
评论列表
文章目录