软件包 | 描述 |
---|---|
io.netty.handler.codec.http |
编码器,解码器及其相关的HTTP消息类型。
|
io.netty.handler.codec.http.cors |
该软件包包含跨源资源共享(CORS)相关类。
|
io.netty.handler.codec.http2 |
用于发送和接收HTTP / 2帧的处理程序。
|
io.netty.handler.codec.rtsp |
基于HTTP编解码器的
RTSP扩展。
|
Modifier and Type | Field and Description |
---|---|
static HttpMethod |
HttpMethod.CONNECT
该规范保留方法名称CONNECT,以便与可以动态切换为隧道的代理一起使用
|
static HttpMethod |
HttpMethod.DELETE
DELETE方法请求源服务器删除由Request-URI标识的资源。
|
static HttpMethod |
HttpMethod.GET
GET方法意味着检索任何信息(以实体的形式)由Request-URI标识。
|
static HttpMethod |
HttpMethod.HEAD
HEAD方法与GET相同,只是服务器不能在响应中返回消息体。
|
static HttpMethod |
HttpMethod.OPTIONS
OPTIONS方法代表请求关于Request-URI所标识的请求/响应链上可用的通信选项的信息。
|
static HttpMethod |
HttpMethod.PATCH
PATCH方法请求将请求实体中描述的一组更改应用于由Request-URI标识的资源。
|
static HttpMethod |
HttpMethod.POST
POST方法用于请求源服务器接受请求中包含的实体作为Request-Line中Request-URI标识的资源的新下属。
|
static HttpMethod |
HttpMethod.PUT
PUT方法要求封闭实体存储在提供的Request-URI下。
|
static HttpMethod |
HttpMethod.TRACE
TRACE方法用于调用请求消息的远程应用层回送。
|
Modifier and Type | Method and Description |
---|---|
HttpMethod |
HttpRequest.getMethod()
已过时。
改为使用
HttpRequest.method() 。
|
HttpMethod |
DefaultHttpRequest.getMethod()
已过时。
|
HttpMethod |
HttpRequest.method()
返回此 HttpRequest 的HttpMethod 。
|
HttpMethod |
DefaultHttpRequest.method() |
static HttpMethod |
HttpMethod.valueOf(java.lang.String name)
返回由指定名称表示的 HttpMethod 。
|
Modifier and Type | Method and Description |
---|---|
int |
HttpMethod.compareTo(HttpMethod o) |
HttpRequest |
HttpRequest.setMethod(HttpMethod method)
设置这 HttpRequest 的HttpMethod 。
|
FullHttpRequest |
FullHttpRequest.setMethod(HttpMethod method) |
HttpRequest |
DefaultHttpRequest.setMethod(HttpMethod method) |
FullHttpRequest |
DefaultFullHttpRequest.setMethod(HttpMethod method) |
Constructor and Description |
---|
DefaultFullHttpRequest(HttpVersion httpVersion, HttpMethod method, java.lang.String uri) |
DefaultFullHttpRequest(HttpVersion httpVersion, HttpMethod method, java.lang.String uri, boolean validateHeaders) |
DefaultFullHttpRequest(HttpVersion httpVersion, HttpMethod method, java.lang.String uri, ByteBuf content) |
DefaultFullHttpRequest(HttpVersion httpVersion, HttpMethod method, java.lang.String uri, ByteBuf content, boolean validateHeaders) |
DefaultFullHttpRequest(HttpVersion httpVersion, HttpMethod method, java.lang.String uri, ByteBuf content, HttpHeaders headers, HttpHeaders trailingHeader) |
DefaultHttpRequest(HttpVersion httpVersion, HttpMethod method, java.lang.String uri)
创建一个新的实例。
|
DefaultHttpRequest(HttpVersion httpVersion, HttpMethod method, java.lang.String uri, boolean validateHeaders)
创建一个新的实例。
|
DefaultHttpRequest(HttpVersion httpVersion, HttpMethod method, java.lang.String uri, HttpHeaders headers)
创建一个新的实例。
|
Modifier and Type | Method and Description |
---|---|
java.util.Set<HttpMethod> |
CorsConfig.allowedRequestMethods()
返回允许的一组请求方法。
|
Modifier and Type | Method and Description |
---|---|
CorsConfigBuilder |
CorsConfigBuilder.allowedRequestMethods(HttpMethod... methods)
指定应该在CORS的“访问控制请求方法”响应头中返回的允许的HTTP请求方法集。
|
CorsConfig.Builder |
CorsConfig.Builder.allowedRequestMethods(HttpMethod... methods)
|
Modifier and Type | Field and Description |
---|---|
static HttpMethod |
HttpConversionUtil.OUT_OF_MESSAGE_SEQUENCE_METHOD
这将是用于 HttpRequest 对象的方法, 该对象由中定义的HTTP消息流生成
|
Modifier and Type | Field and Description |
---|---|
static HttpMethod |
RtspMethods.ANNOUNCE
ANNOUNCE将由请求URL标识的演示文稿或媒体对象的描述发布到服务器,或实时更新客户端会话描述。
|
static HttpMethod |
RtspMethods.DESCRIBE
DESCRIBE getMethod从服务器检索由请求URL标识的演示文稿或媒体对象的描述。
|
static HttpMethod |
RtspMethods.GET_PARAMETER
GET_PARAMETER请求检索URI中指定的表示或流的参数的值。
|
static HttpMethod |
RtspMethods.OPTIONS
OPTIONS getMethod表示请求有关请求/ URI请求/响应链上可用的通信选项的信息。
|
static HttpMethod |
RtspMethods.PAUSE
暂停请求导致暂时中断(停止)流传送。
|
static HttpMethod |
RtspMethods.PLAY
PLAY getMethod通知服务器通过SETUP中指定的机制开始发送数据。
|
static HttpMethod |
RtspMethods.RECORD
RECORD getMethod根据演示描述开始记录一系列媒体数据。
|
static HttpMethod |
RtspMethods.REDIRECT
REDIRECT请求通知客户端它必须连接到另一个服务器位置。
|
static HttpMethod |
RtspMethods.SET_PARAMETER
SET_PARAMETER请求为由URI指定的表示或流设置参数的值。
|
static HttpMethod |
RtspMethods.SETUP
URI的SETUP请求指定要用于流媒体的传输机制。
|
static HttpMethod |
RtspMethods.TEARDOWN
TEARDOWN请求停止给定URI的流传送,释放与其关联的资源。
|
Modifier and Type | Method and Description |
---|---|
static HttpMethod |
RtspMethods.valueOf(java.lang.String name)
返回由指定名称表示的 HttpMethod 。
|
Copyright © 2008–2018 The Netty Project. All rights reserved.