本文整理了Java中io.micronaut.http.HttpRequest.PUT()
方法的一些代码示例,展示了HttpRequest.PUT()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。HttpRequest.PUT()
方法的具体详情如下:
包路径:io.micronaut.http.HttpRequest
类名称:HttpRequest
方法名:PUT
[英]Return a MutableHttpRequest that executes an HttpMethod#PUT request for the given URI.
[中]返回对给定URI执行HttpMethod#PUT请求的可变HttpRequest。
代码示例来源:origin: micronaut-projects/micronaut-core
/**
* Return a {@link MutableHttpRequest} that executes an {@link HttpMethod#PUT} request for the given URI.
*
* @param uri The URI
* @param body The body of the request (content type defaults to {@link MediaType#APPLICATION_JSON}
* @param <T> The body type
* @return The {@link MutableHttpRequest} instance
* @see HttpRequestFactory
*/
static <T> MutableHttpRequest<T> PUT(URI uri, T body) {
return PUT(uri.toString(), body);
}
代码示例来源:origin: io.micronaut/micronaut-http
/**
* Return a {@link MutableHttpRequest} that executes an {@link HttpMethod#PUT} request for the given URI.
*
* @param uri The URI
* @param body The body of the request (content type defaults to {@link MediaType#APPLICATION_JSON}
* @param <T> The body type
* @return The {@link MutableHttpRequest} instance
* @see HttpRequestFactory
*/
static <T> MutableHttpRequest<T> PUT(URI uri, T body) {
return PUT(uri.toString(), body);
}
内容来源于网络,如有侵权,请联系作者删除!