修飾子と型 | メソッドと説明 |
---|---|
HttpMethod | HttpHeaders.getAccessControlRequestMethod() Access-Control-Request-Method リクエストヘッダーの値を返します。 |
default HttpMethod | HttpRequest.getMethod() リクエストの HTTP メソッドを返します。 |
HttpMethod | RequestEntity.getMethod() リクエストの HTTP メソッドを返します。 |
static HttpMethod | HttpMethod.resolve(java.lang.String method) 指定されたメソッド値を HttpMethod に解決します。 |
static HttpMethod | HttpMethod.valueOf(java.lang.String name) 指定された名前を持つこの型の列挙定数を返します。 |
static HttpMethod[] | HttpMethod.values() この列挙型の定数を含む配列を、宣言されている順序で返します。 |
修飾子と型 | メソッドと説明 |
---|---|
java.util.List<HttpMethod> | HttpHeaders.getAccessControlAllowMethods() Access-Control-Allow-Methods レスポンスヘッダーの値を返します。 |
java.util.Set<HttpMethod> | HttpHeaders.getAllow() Allow ヘッダーで指定されている、許可された HTTP methods のセットを返します。 |
修飾子と型 | メソッドと説明 |
---|---|
B | ResponseEntity.HeadersBuilder.allow(HttpMethod... allowedMethods) Allow ヘッダーの指定に従って、許可された HTTP methods のセットを設定します。 |
static RequestEntity.BodyBuilder | RequestEntity.method(HttpMethod method, java.net.URI url) 指定されたメソッドと URL でビルダーを作成します。 |
void | HttpHeaders.setAccessControlRequestMethod(HttpMethod requestMethod) Access-Control-Request-Method リクエストヘッダーの(新しい)値を設定します。 |
修飾子と型 | メソッドと説明 |
---|---|
void | HttpHeaders.setAccessControlAllowMethods(java.util.List<HttpMethod> allowedMethods) Access-Control-Allow-Methods レスポンスヘッダーの(新しい)値を設定します。 |
void | HttpHeaders.setAllow(java.util.Set<HttpMethod> allowedMethods) Allow ヘッダーの指定に従って、許可された HTTP methods のセットを設定します。 |
コンストラクターと説明 |
---|
RequestEntity(HttpMethod method, java.net.URI url) メソッドと URL はあるが、本文もヘッダーもないコンストラクター。 |
RequestEntity(MultiValueMap<java.lang.String,java.lang.String> headers, HttpMethod method, java.net.URI url) メソッド、URL、ヘッダーはあるが本文はないコンストラクター。 |
RequestEntity(T body, HttpMethod method, java.net.URI url) メソッド、URL、ボディはあるがヘッダーはないコンストラクター。 |
RequestEntity(T body, HttpMethod method, java.net.URI url, java.lang.reflect.Type type) メソッド、URL、ボディ、型はあるがヘッダーはないコンストラクター。 |
RequestEntity(T body, MultiValueMap<java.lang.String,java.lang.String> headers, HttpMethod method, java.net.URI url) メソッド、URL、ヘッダー、本文を含むコンストラクター。 |
RequestEntity(T body, MultiValueMap<java.lang.String,java.lang.String> headers, HttpMethod method, java.net.URI url, java.lang.reflect.Type type) メソッド、URL、ヘッダー、ボディ、型を持つコンストラクター。 |
修飾子と型 | メソッドと説明 |
---|---|
AsyncClientHttpRequest | InterceptingAsyncClientHttpRequestFactory.createAsyncRequest(java.net.URI uri, HttpMethod method) 使用すべきではありません。 |
AsyncClientHttpRequest | Netty4ClientHttpRequestFactory.createAsyncRequest(java.net.URI uri, HttpMethod httpMethod) 使用すべきではありません。 |
AsyncClientHttpRequest | HttpComponentsAsyncClientHttpRequestFactory.createAsyncRequest(java.net.URI uri, HttpMethod httpMethod) 使用すべきではありません。 |
AsyncClientHttpRequest | SimpleClientHttpRequestFactory.createAsyncRequest(java.net.URI uri, HttpMethod httpMethod) 指定された URI および HTTP メソッドの新しい非同期 AsyncClientHttpRequest を作成します。 |
AsyncClientHttpRequest | AsyncClientHttpRequestFactory.createAsyncRequest(java.net.URI uri, HttpMethod httpMethod) 使用すべきではありません。 指定された URI および HTTP メソッドの新しい非同期 AsyncClientHttpRequest を作成します。 |
AsyncClientHttpRequest | OkHttp3ClientHttpRequestFactory.createAsyncRequest(java.net.URI uri, HttpMethod httpMethod) |
protected org.apache.http.protocol.HttpContext | HttpComponentsClientHttpRequestFactory.createHttpContext(HttpMethod httpMethod, java.net.URI uri) 指定された HTTP メソッドと URI の HttpContext を作成するテンプレートメソッド。 |
protected HttpUriRequest | HttpComponentsClientHttpRequestFactory.createHttpUriRequest(HttpMethod httpMethod, java.net.URI uri) 指定された HTTP メソッドと URI 仕様の Commons HttpMethodBase オブジェクトを作成します。 |
ClientHttpRequest | Netty4ClientHttpRequestFactory.createRequest(java.net.URI uri, HttpMethod httpMethod) 使用すべきではありません。 |
ClientHttpRequest | HttpComponentsClientHttpRequestFactory.createRequest(java.net.URI uri, HttpMethod httpMethod) |
ClientHttpRequest | ClientHttpRequestFactory.createRequest(java.net.URI uri, HttpMethod httpMethod) 指定された URI および HTTP メソッドの新しい ClientHttpRequest を作成します。 |
ClientHttpRequest | SimpleClientHttpRequestFactory.createRequest(java.net.URI uri, HttpMethod httpMethod) |
ClientHttpRequest | AbstractClientHttpRequestFactoryWrapper.createRequest(java.net.URI uri, HttpMethod httpMethod) この実装は、コンストラクターに提供されたラップされたリクエストファクトリを使用して AbstractClientHttpRequestFactoryWrapper.createRequest(URI, HttpMethod, ClientHttpRequestFactory) を呼び出すだけです。 |
ClientHttpRequest | OkHttp3ClientHttpRequestFactory.createRequest(java.net.URI uri, HttpMethod httpMethod) |
protected ClientHttpRequest | InterceptingClientHttpRequestFactory.createRequest(java.net.URI uri, HttpMethod httpMethod, ClientHttpRequestFactory requestFactory) |
protected abstract ClientHttpRequest | AbstractClientHttpRequestFactoryWrapper.createRequest(java.net.URI uri, HttpMethod httpMethod, ClientHttpRequestFactory requestFactory) 渡されたリクエストファクトリを使用して、指定された URI および HTTP メソッドの新しい ClientHttpRequest を作成します。 |
protected ClientHttpRequest | BufferingClientHttpRequestFactory.createRequest(java.net.URI uri, HttpMethod httpMethod, ClientHttpRequestFactory requestFactory) |
protected boolean | BufferingClientHttpRequestFactory.shouldBuffer(java.net.URI uri, HttpMethod httpMethod) 指定された URI およびメソッドのリクエスト / レスポンス交換をメモリにバッファリングする必要があるかどうかを示します。 |
修飾子と型 | メソッドと説明 |
---|---|
HttpMethod | ClientHttpRequestDecorator.getMethod() |
HttpMethod | ClientHttpRequest.getMethod() リクエストの HTTP メソッドを返します。 |
修飾子と型 | メソッドと説明 |
---|---|
reactor.core.publisher.Mono<ClientHttpResponse> | JettyClientHttpConnector.connect(HttpMethod method, java.net.URI uri, java.util.function.Function<? super ClientHttpRequest,reactor.core.publisher.Mono<java.lang.Void>> requestCallback) |
reactor.core.publisher.Mono<ClientHttpResponse> | ReactorClientHttpConnector.connect(HttpMethod method, java.net.URI uri, java.util.function.Function<? super ClientHttpRequest,reactor.core.publisher.Mono<java.lang.Void>> requestCallback) |
reactor.core.publisher.Mono<ClientHttpResponse> | ClientHttpConnector.connect(HttpMethod method, java.net.URI uri, java.util.function.Function<? super ClientHttpRequest,reactor.core.publisher.Mono<java.lang.Void>> requestCallback) 指定された HttpMethod と URI を使用してオリジンサーバーに接続し、基になる API の HTTP リクエストを初期化して書き込むことができるときに指定された requestCallback を適用します。 |
修飾子と型 | メソッドと説明 |
---|---|
HttpMethod | HttpRequestWrapper.getMethod() ラップされたリクエストのメソッドを返します。 |
修飾子と型 | メソッドと説明 |
---|---|
protected AsyncClientHttpRequest | AsyncHttpAccessor.createAsyncRequest(java.net.URI url, HttpMethod method) 使用すべきではありません。 このテンプレートの AsyncClientHttpRequestFactory を介して新しい AsyncClientHttpRequest を作成します。 |
protected ClientHttpRequest | HttpAccessor.createRequest(java.net.URI url, HttpMethod method) このテンプレートの ClientHttpRequestFactory を介して新しい ClientHttpRequest を作成します。 |
修飾子と型 | メソッドと説明 |
---|---|
HttpMethod | ServletServerHttpRequest.getMethod() |
修飾子と型 | メソッドと説明 |
---|---|
HttpMethod | ServerHttpRequestDecorator.getMethod() |
修飾子と型 | メソッドと説明 |
---|---|
ServerHttpRequest.Builder | ServerHttpRequest.Builder.method(HttpMethod httpMethod) 返す HTTP メソッドを設定します。 |
修飾子と型 | メソッドと説明 |
---|---|
HttpMethod | MockClientHttpRequest.getMethod() |
修飾子と型 | メソッドと説明 |
---|---|
void | MockClientHttpRequest.setMethod(HttpMethod httpMethod) |
コンストラクターと説明 |
---|
MockAsyncClientHttpRequest(HttpMethod httpMethod, java.net.URI uri) 使用すべきではありません。 |
MockClientHttpRequest(HttpMethod httpMethod, java.net.URI uri) 指定された HttpMethod と URI でインスタンスを作成します。 |
修飾子と型 | メソッドと説明 |
---|---|
HttpMethod | MockClientHttpRequest.getMethod() |
コンストラクターと説明 |
---|
MockClientHttpRequest(HttpMethod httpMethod, java.lang.String urlTemplate, java.lang.Object... vars) |
MockClientHttpRequest(HttpMethod httpMethod, java.net.URI url) |
修飾子と型 | メソッドと説明 |
---|---|
HttpMethod | MockServerHttpRequest.getMethod() |
修飾子と型 | メソッドと説明 |
---|---|
static MockServerHttpRequest.BodyBuilder | MockServerHttpRequest.method(HttpMethod method, java.lang.String urlTemplate, java.lang.Object... vars) URI テンプレートを受け入れる MockServerHttpRequest.method(HttpMethod, URI) の代替。 |
static MockServerHttpRequest.BodyBuilder | MockServerHttpRequest.method(HttpMethod method, java.net.URI url) 指定された HTTP メソッドと URI を使用してビルダーを作成します。 |
修飾子と型 | メソッドと説明 |
---|---|
HttpMethod | MockMultipartHttpServletRequest.getRequestMethod() |
修飾子と型 | メソッドと説明 |
---|---|
HttpMethod | MockServerRequest.method() |
修飾子と型 | メソッドと説明 |
---|---|
MockServerRequest.Builder | MockServerRequest.Builder.method(HttpMethod method) |
修飾子と型 | メソッドと説明 |
---|---|
AsyncClientHttpRequest | MockMvcClientHttpRequestFactory.createAsyncRequest(java.net.URI uri, HttpMethod method) |
ClientHttpRequest | MockMvcClientHttpRequestFactory.createRequest(java.net.URI uri, HttpMethod httpMethod) |
修飾子と型 | メソッドと説明 |
---|---|
static RequestMatcher | MockRestRequestMatchers.method(HttpMethod method) リクエストの HttpMethod をアサートします。 |
修飾子と型 | メソッドと説明 |
---|---|
HttpMethod | ExchangeResult.getMethod() リクエストのメソッドを返します。 |
修飾子と型 | メソッドと説明 |
---|---|
reactor.core.publisher.Mono<ClientHttpResponse> | HttpHandlerConnector.connect(HttpMethod httpMethod, java.net.URI uri, java.util.function.Function<? super ClientHttpRequest,reactor.core.publisher.Mono<java.lang.Void>> requestCallback) |
WebTestClient.RequestBodyUriSpec | WebTestClient.method(HttpMethod method) 指定された HttpMethod のリクエストを準備します。 |
修飾子と型 | メソッドと説明 |
---|---|
static MockHttpServletRequestBuilder | MockMvcRequestBuilders.request(HttpMethod method, java.lang.String urlTemplate, java.lang.Object... uriVars) 指定された HTTP メソッドでリクエストの MockHttpServletRequestBuilder を作成します。 |
static MockHttpServletRequestBuilder | MockMvcRequestBuilders.request(HttpMethod httpMethod, java.net.URI uri) 指定された HTTP メソッドでリクエストの MockHttpServletRequestBuilder を作成します。 |
修飾子と型 | メソッドと説明 |
---|---|
java.util.Set<HttpMethod> | HttpRequestMethodNotSupportedException.getSupportedHttpMethods() 実際にサポートされている HTTP メソッドを HttpMethod インスタンス、または不明の場合は null として返します。 |
修飾子と型 | メソッドと説明 |
---|---|
java.util.Set<HttpMethod> | RestOperations.optionsForAllow(java.lang.String url, java.util.Map<java.lang.String,?> uriVariables) 指定された URI の Allow ヘッダーの値を返します。 |
java.util.Set<HttpMethod> | RestTemplate.optionsForAllow(java.lang.String url, java.util.Map<java.lang.String,?> uriVariables) |
ListenableFuture<java.util.Set<HttpMethod>> | AsyncRestTemplate.optionsForAllow(java.lang.String url, java.util.Map<java.lang.String,?> uriVars) 使用すべきではありません。 |
ListenableFuture<java.util.Set<HttpMethod>> | AsyncRestOperations.optionsForAllow(java.lang.String url, java.util.Map<java.lang.String,?> uriVariables) 使用すべきではありません。 指定された URI の Allow ヘッダーの値を非同期的に返します。 |
java.util.Set<HttpMethod> | RestOperations.optionsForAllow(java.lang.String url, java.lang.Object... uriVariables) 指定された URI の Allow ヘッダーの値を返します。 |
java.util.Set<HttpMethod> | RestTemplate.optionsForAllow(java.lang.String url, java.lang.Object... uriVariables) |
ListenableFuture<java.util.Set<HttpMethod>> | AsyncRestTemplate.optionsForAllow(java.lang.String url, java.lang.Object... uriVars) 使用すべきではありません。 |
ListenableFuture<java.util.Set<HttpMethod>> | AsyncRestOperations.optionsForAllow(java.lang.String url, java.lang.Object... uriVariables) 使用すべきではありません。 指定された URI の Allow ヘッダーの値を非同期的に返します。 |
java.util.Set<HttpMethod> | RestOperations.optionsForAllow(java.net.URI url) 指定された URL の Allow ヘッダーの値を返します。 |
java.util.Set<HttpMethod> | RestTemplate.optionsForAllow(java.net.URI url) |
ListenableFuture<java.util.Set<HttpMethod>> | AsyncRestTemplate.optionsForAllow(java.net.URI url) 使用すべきではありません。 |
ListenableFuture<java.util.Set<HttpMethod>> | AsyncRestOperations.optionsForAllow(java.net.URI url) 使用すべきではありません。 指定された URL の Allow ヘッダーの値を非同期的に返します。 |
修飾子と型 | メソッドと説明 |
---|---|
protected <T> ListenableFuture<T> | AsyncRestTemplate.doExecute(java.net.URI url, HttpMethod method, AsyncRequestCallback requestCallback, ResponseExtractor<T> responseExtractor) 使用すべきではありません。 指定された URI で指定されたメソッドを実行します。 |
protected <T> T | RestTemplate.doExecute(java.net.URI url, HttpMethod method, RequestCallback requestCallback, ResponseExtractor<T> responseExtractor) 指定された URI で指定されたメソッドを実行します。 |
<T> ResponseEntity<T> | RestOperations.exchange(java.lang.String url, HttpMethod method, HttpEntity<?> requestEntity, java.lang.Class<T> responseType, java.util.Map<java.lang.String,?> uriVariables) 指定された URI テンプレートに対して HTTP メソッドを実行し、指定されたリクエストエンティティをリクエストに書き込み、レスポンスを ResponseEntity として返します。 |
<T> ResponseEntity<T> | RestTemplate.exchange(java.lang.String url, HttpMethod method, HttpEntity<?> requestEntity, java.lang.Class<T> responseType, java.util.Map<java.lang.String,?> uriVariables) |
<T> ListenableFuture<ResponseEntity<T>> | AsyncRestTemplate.exchange(java.lang.String url, HttpMethod method, HttpEntity<?> requestEntity, java.lang.Class<T> responseType, java.util.Map<java.lang.String,?> uriVariables) 使用すべきではありません。 |
<T> ListenableFuture<ResponseEntity<T>> | AsyncRestOperations.exchange(java.lang.String url, HttpMethod method, HttpEntity<?> requestEntity, java.lang.Class<T> responseType, java.util.Map<java.lang.String,?> uriVariables) 使用すべきではありません。 指定された URI テンプレートに対して HTTP メソッドを非同期に実行し、指定されたリクエストエンティティをリクエストに書き込み、レスポンスを ResponseEntity として返します。 |
<T> ResponseEntity<T> | RestOperations.exchange(java.lang.String url, HttpMethod method, HttpEntity<?> requestEntity, java.lang.Class<T> responseType, java.lang.Object... uriVariables) 指定された URI テンプレートに対して HTTP メソッドを実行し、指定されたリクエストエンティティをリクエストに書き込み、レスポンスを ResponseEntity として返します。 |
<T> ResponseEntity<T> | RestTemplate.exchange(java.lang.String url, HttpMethod method, HttpEntity<?> requestEntity, java.lang.Class<T> responseType, java.lang.Object... uriVariables) |
<T> ListenableFuture<ResponseEntity<T>> | AsyncRestTemplate.exchange(java.lang.String url, HttpMethod method, HttpEntity<?> requestEntity, java.lang.Class<T> responseType, java.lang.Object... uriVariables) 使用すべきではありません。 |
<T> ListenableFuture<ResponseEntity<T>> | AsyncRestOperations.exchange(java.lang.String url, HttpMethod method, HttpEntity<?> requestEntity, java.lang.Class<T> responseType, java.lang.Object... uriVariables) 使用すべきではありません。 指定された URI テンプレートに対して HTTP メソッドを非同期に実行し、指定されたリクエストエンティティをリクエストに書き込み、レスポンスを ResponseEntity として返します。 |
<T> ResponseEntity<T> | RestOperations.exchange(java.lang.String url, HttpMethod method, HttpEntity<?> requestEntity, ParameterizedTypeReference<T> responseType, java.util.Map<java.lang.String,?> uriVariables) 指定された URI テンプレートに対して HTTP メソッドを実行し、指定されたリクエストエンティティをリクエストに書き込み、レスポンスを ResponseEntity として返します。 |
<T> ResponseEntity<T> | RestTemplate.exchange(java.lang.String url, HttpMethod method, HttpEntity<?> requestEntity, ParameterizedTypeReference<T> responseType, java.util.Map<java.lang.String,?> uriVariables) |
<T> ListenableFuture<ResponseEntity<T>> | AsyncRestTemplate.exchange(java.lang.String url, HttpMethod method, HttpEntity<?> requestEntity, ParameterizedTypeReference<T> responseType, java.util.Map<java.lang.String,?> uriVariables) 使用すべきではありません。 |
<T> ListenableFuture<ResponseEntity<T>> | AsyncRestOperations.exchange(java.lang.String url, HttpMethod method, HttpEntity<?> requestEntity, ParameterizedTypeReference<T> responseType, java.util.Map<java.lang.String,?> uriVariables) 使用すべきではありません。 指定された URI テンプレートに対して HTTP メソッドを非同期に実行し、指定されたリクエストエンティティをリクエストに書き込み、レスポンスを ResponseEntity として返します。 |
<T> ResponseEntity<T> | RestOperations.exchange(java.lang.String url, HttpMethod method, HttpEntity<?> requestEntity, ParameterizedTypeReference<T> responseType, java.lang.Object... uriVariables) 指定された URI テンプレートに対して HTTP メソッドを実行し、指定されたリクエストエンティティをリクエストに書き込み、レスポンスを ResponseEntity として返します。 |
<T> ResponseEntity<T> | RestTemplate.exchange(java.lang.String url, HttpMethod method, HttpEntity<?> requestEntity, ParameterizedTypeReference<T> responseType, java.lang.Object... uriVariables) |
<T> ListenableFuture<ResponseEntity<T>> | AsyncRestTemplate.exchange(java.lang.String url, HttpMethod method, HttpEntity<?> requestEntity, ParameterizedTypeReference<T> responseType, java.lang.Object... uriVariables) 使用すべきではありません。 |
<T> ListenableFuture<ResponseEntity<T>> | AsyncRestOperations.exchange(java.lang.String url, HttpMethod method, HttpEntity<?> requestEntity, ParameterizedTypeReference<T> responseType, java.lang.Object... uriVariables) 使用すべきではありません。 指定された URI テンプレートに対して HTTP メソッドを非同期に実行し、指定されたリクエストエンティティをリクエストに書き込み、レスポンスを ResponseEntity として返します。 |
<T> ResponseEntity<T> | RestOperations.exchange(java.net.URI url, HttpMethod method, HttpEntity<?> requestEntity, java.lang.Class<T> responseType) 指定された URI テンプレートに対して HTTP メソッドを実行し、指定されたリクエストエンティティをリクエストに書き込み、レスポンスを ResponseEntity として返します。 |
<T> ResponseEntity<T> | RestTemplate.exchange(java.net.URI url, HttpMethod method, HttpEntity<?> requestEntity, java.lang.Class<T> responseType) |
<T> ListenableFuture<ResponseEntity<T>> | AsyncRestTemplate.exchange(java.net.URI url, HttpMethod method, HttpEntity<?> requestEntity, java.lang.Class<T> responseType) 使用すべきではありません。 |
<T> ListenableFuture<ResponseEntity<T>> | AsyncRestOperations.exchange(java.net.URI url, HttpMethod method, HttpEntity<?> requestEntity, java.lang.Class<T> responseType) 使用すべきではありません。 指定された URI テンプレートに対して HTTP メソッドを非同期に実行し、指定されたリクエストエンティティをリクエストに書き込み、レスポンスを ResponseEntity として返します。 |
<T> ResponseEntity<T> | RestOperations.exchange(java.net.URI url, HttpMethod method, HttpEntity<?> requestEntity, ParameterizedTypeReference<T> responseType) 指定された URI テンプレートに対して HTTP メソッドを実行し、指定されたリクエストエンティティをリクエストに書き込み、レスポンスを ResponseEntity として返します。 |
<T> ResponseEntity<T> | RestTemplate.exchange(java.net.URI url, HttpMethod method, HttpEntity<?> requestEntity, ParameterizedTypeReference<T> responseType) |
<T> ListenableFuture<ResponseEntity<T>> | AsyncRestTemplate.exchange(java.net.URI url, HttpMethod method, HttpEntity<?> requestEntity, ParameterizedTypeReference<T> responseType) 使用すべきではありません。 |
<T> ListenableFuture<ResponseEntity<T>> | AsyncRestOperations.exchange(java.net.URI url, HttpMethod method, HttpEntity<?> requestEntity, ParameterizedTypeReference<T> responseType) 使用すべきではありません。 指定された URI テンプレートに対して HTTP メソッドを非同期に実行し、指定されたリクエストエンティティをリクエストに書き込み、レスポンスを ResponseEntity として返します。 |
<T> ListenableFuture<T> | AsyncRestTemplate.execute(java.lang.String url, HttpMethod method, AsyncRequestCallback requestCallback, ResponseExtractor<T> responseExtractor, java.util.Map<java.lang.String,?> uriVariables) 使用すべきではありません。 |
<T> ListenableFuture<T> | AsyncRestOperations.execute(java.lang.String url, HttpMethod method, AsyncRequestCallback requestCallback, ResponseExtractor<T> responseExtractor, java.util.Map<java.lang.String,?> uriVariables) 使用すべきではありません。 指定された URI テンプレートに対して HTTP メソッドを非同期的に実行し、 AsyncRequestCallback を使用してリクエストを準備し、ResponseExtractor を使用してレスポンスを読み取ります。 |
<T> ListenableFuture<T> | AsyncRestTemplate.execute(java.lang.String url, HttpMethod method, AsyncRequestCallback requestCallback, ResponseExtractor<T> responseExtractor, java.lang.Object... uriVariables) 使用すべきではありません。 |
<T> ListenableFuture<T> | AsyncRestOperations.execute(java.lang.String url, HttpMethod method, AsyncRequestCallback requestCallback, ResponseExtractor<T> responseExtractor, java.lang.Object... uriVariables) 使用すべきではありません。 指定された URI テンプレートに対して HTTP メソッドを非同期的に実行し、 AsyncRequestCallback を使用してリクエストを準備し、ResponseExtractor を使用してレスポンスを読み取ります。 |
<T> T | RestOperations.execute(java.lang.String url, HttpMethod method, RequestCallback requestCallback, ResponseExtractor<T> responseExtractor, java.util.Map<java.lang.String,?> uriVariables) 指定された URI テンプレートに対して HTTP メソッドを実行し、 RequestCallback を使用してリクエストを準備し、ResponseExtractor を使用してレスポンスを読み取ります。 |
<T> T | RestTemplate.execute(java.lang.String url, HttpMethod method, RequestCallback requestCallback, ResponseExtractor<T> responseExtractor, java.util.Map<java.lang.String,?> uriVariables) 指定された URI テンプレートに対して HTTP メソッドを実行し、 RequestCallback を使用してリクエストを準備し、ResponseExtractor を使用してレスポンスを読み取ります。 |
<T> T | RestOperations.execute(java.lang.String url, HttpMethod method, RequestCallback requestCallback, ResponseExtractor<T> responseExtractor, java.lang.Object... uriVariables) 指定された URI テンプレートに対して HTTP メソッドを実行し、 RequestCallback を使用してリクエストを準備し、ResponseExtractor を使用してレスポンスを読み取ります。 |
<T> T | RestTemplate.execute(java.lang.String url, HttpMethod method, RequestCallback requestCallback, ResponseExtractor<T> responseExtractor, java.lang.Object... uriVariables) 指定された URI テンプレートに対して HTTP メソッドを実行し、 RequestCallback を使用してリクエストを準備し、ResponseExtractor を使用してレスポンスを読み取ります。 |
<T> ListenableFuture<T> | AsyncRestTemplate.execute(java.net.URI url, HttpMethod method, AsyncRequestCallback requestCallback, ResponseExtractor<T> responseExtractor) 使用すべきではありません。 |
<T> ListenableFuture<T> | AsyncRestOperations.execute(java.net.URI url, HttpMethod method, AsyncRequestCallback requestCallback, ResponseExtractor<T> responseExtractor) 使用すべきではありません。 指定された URL に対して HTTP メソッドを非同期に実行し、 AsyncRequestCallback を使用してリクエストを準備し、ResponseExtractor を使用してレスポンスを読み取ります。 |
<T> T | RestOperations.execute(java.net.URI url, HttpMethod method, RequestCallback requestCallback, ResponseExtractor<T> responseExtractor) 指定された URL に対して HTTP メソッドを実行し、 RequestCallback を使用してリクエストを準備し、ResponseExtractor を使用してレスポンスを読み取ります。 |
<T> T | RestTemplate.execute(java.net.URI url, HttpMethod method, RequestCallback requestCallback, ResponseExtractor<T> responseExtractor) 指定された URL に対して HTTP メソッドを実行し、 RequestCallback を使用してリクエストを準備し、ResponseExtractor を使用してレスポンスを読み取ります。 |
default void | ResponseErrorHandler.handleError(java.net.URI url, HttpMethod method, ClientHttpResponse response) リクエスト URL および HTTP メソッドへのアクセスを提供する追加情報を持つ ResponseErrorHandler.handleError(ClientHttpResponse) の代替。 |
protected void | RestTemplate.handleResponse(java.net.URI url, HttpMethod method, ClientHttpResponse response) 指定されたレスポンスを処理し、適切なロギングを実行し、必要に応じて ResponseErrorHandler を呼び出します。 |
修飾子と型 | メソッドと説明 |
---|---|
HttpMethod | ServletWebRequest.getHttpMethod() リクエストの HTTP メソッドを返します。 |
修飾子と型 | メソッドと説明 |
---|---|
java.util.List<HttpMethod> | CorsConfiguration.checkHttpMethod(HttpMethod requestMethod) HTTP リクエストメソッド(またはプリフライトリクエストの Access-Control-Request-Method ヘッダーのメソッド)を、構成された許可されたメソッドと照合します。 |
protected java.util.List<HttpMethod> | DefaultCorsProcessor.checkMethods(CorsConfiguration config, HttpMethod requestMethod) HTTP メソッドを確認し、プリフライトリクエストのレスポンスのメソッドを決定します。 |
修飾子と型 | メソッドと説明 |
---|---|
void | CorsConfiguration.addAllowedMethod(HttpMethod method) 許可する HTTP メソッドを追加します。 |
java.util.List<HttpMethod> | CorsConfiguration.checkHttpMethod(HttpMethod requestMethod) HTTP リクエストメソッド(またはプリフライトリクエストの Access-Control-Request-Method ヘッダーのメソッド)を、構成された許可されたメソッドと照合します。 |
protected java.util.List<HttpMethod> | DefaultCorsProcessor.checkMethods(CorsConfiguration config, HttpMethod requestMethod) HTTP メソッドを確認し、プリフライトリクエストのレスポンスのメソッドを決定します。 |
修飾子と型 | メソッドと説明 |
---|---|
protected java.util.List<HttpMethod> | DefaultCorsProcessor.checkMethods(CorsConfiguration config, HttpMethod requestMethod) HTTP メソッドを確認し、プリフライトリクエストのレスポンスのメソッドを決定します。 |
修飾子と型 | メソッドと説明 |
---|---|
protected java.util.List<HttpMethod> | DefaultCorsProcessor.checkMethods(CorsConfiguration config, HttpMethod requestMethod) HTTP メソッドを確認し、プリフライトリクエストのレスポンスのメソッドを決定します。 |
修飾子と型 | メソッドと説明 |
---|---|
HttpMethod | MultipartHttpServletRequest.getRequestMethod() このリクエストのメソッドを便利な HttpMethod インスタンスとして返します。 |
修飾子と型 | メソッドと説明 |
---|---|
HttpMethod | AbstractMultipartHttpServletRequest.getRequestMethod() |
修飾子と型 | メソッドと説明 |
---|---|
HttpMethod | ClientRequest.method() HTTP メソッドを返します。 |
修飾子と型 | メソッドと説明 |
---|---|
static ClientRequest.Builder | ClientRequest.create(HttpMethod method, java.net.URI url) 指定されたメソッドと URL でリクエストビルダーを作成します。 |
WebClient.RequestBodyUriSpec | WebClient.method(HttpMethod method) 指定された HttpMethod のリクエストの構築を開始します。 |
ClientRequest.Builder | ClientRequest.Builder.method(HttpMethod method) リクエストのメソッドを設定します。 |
static ClientRequest.Builder | ClientRequest.method(HttpMethod method, java.net.URI url) 使用すべきではありません。 |
修飾子と型 | メソッドと説明 |
---|---|
default HttpMethod | ServerRequest.method() HTTP メソッドを取得します。 |
修飾子と型 | メソッドと説明 |
---|---|
EntityResponse.Builder<T> | EntityResponse.Builder.allow(HttpMethod... allowedMethods) Allow ヘッダーの指定に従って、許可された HTTP methods のセットを設定します。 |
B | ServerResponse.HeadersBuilder.allow(HttpMethod... allowedMethods) Allow ヘッダーの指定に従って、許可された HTTP methods のセットを設定します。 |
ServerRequest.Builder | ServerRequest.Builder.method(HttpMethod method) リクエストのメソッドを設定します。 |
static RequestPredicate | RequestPredicates.method(HttpMethod httpMethod) リクエストの HTTP メソッドが指定されたメソッドと等しい場合に一致する RequestPredicate を返します。 |
static RequestPredicate | RequestPredicates.methods(HttpMethod... httpMethods) リクエストの HTTP メソッドが指定されたメソッドの 1 つと等しい場合に一致する RequestPredicate を返します。 |
修飾子と型 | メソッドと説明 |
---|---|
EntityResponse.Builder<T> | EntityResponse.Builder.allow(java.util.Set<HttpMethod> allowedMethods) Allow ヘッダーの指定に従って、許可された HTTP methods のセットを設定します。 |
B | ServerResponse.HeadersBuilder.allow(java.util.Set<HttpMethod> allowedMethods) Allow ヘッダーの指定に従って、許可された HTTP methods のセットを設定します。 |
void | RequestPredicates.Visitor.method(java.util.Set<HttpMethod> methods) HTTP メソッド述語の通知を受け取ります。 |
修飾子と型 | メソッドと説明 |
---|---|
HttpMethod | ServerRequestWrapper.method() |
修飾子と型 | メソッドと説明 |
---|---|
java.util.Set<HttpMethod> | MethodNotAllowedException.getSupportedMethods() サポートされている HTTP メソッドのリストを返します。 |
コンストラクターと説明 |
---|
MethodNotAllowedException(HttpMethod method, java.util.Collection<HttpMethod> supportedMethods) |
コンストラクターと説明 |
---|
MethodNotAllowedException(HttpMethod method, java.util.Collection<HttpMethod> supportedMethods) |
MethodNotAllowedException(java.lang.String method, java.util.Collection<HttpMethod> supportedMethods) |
修飾子と型 | メソッドと説明 |
---|---|
protected boolean | AbstractSockJsService.checkOrigin(ServerHttpRequest request, ServerHttpResponse response, HttpMethod... httpMethods) |
protected void | AbstractSockJsService.sendMethodNotAllowed(ServerHttpResponse response, HttpMethod... httpMethods) |
修飾子と型 | メソッドと説明 |
---|---|
HttpMethod | TransportType.getHttpMethod() |