|
|
@ -315,6 +315,16 @@ public class WebClient {
|
|
|
|
return this;
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**map의 엔트리로 요청의 헤더를 설정한다.
|
|
|
|
|
|
|
|
* @param map map
|
|
|
|
|
|
|
|
* @return 현재 Request
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
public Request header(Map<String, String> map) {
|
|
|
|
|
|
|
|
if (!Assert.isEmpty(map))
|
|
|
|
|
|
|
|
map.forEach(this::header);
|
|
|
|
|
|
|
|
return this;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public Request contentType(ContentType type) {
|
|
|
|
public Request contentType(ContentType type) {
|
|
|
|
return header("Content-Type", type.type + "; charset=" + charset);
|
|
|
|
return header("Content-Type", type.type + "; charset=" + charset);
|
|
|
|
}
|
|
|
|
}
|
|
|
|