38
38
import org .springframework .lang .Nullable ;
39
39
import org .springframework .util .Assert ;
40
40
import org .springframework .util .CollectionUtils ;
41
- import org .springframework .util .FileCopyUtils ;
42
41
import org .springframework .util .ObjectUtils ;
43
42
44
43
/**
@@ -135,8 +134,7 @@ protected boolean hasError(int statusCode) {
135
134
*/
136
135
@ Override
137
136
public void handleError (ClientHttpResponse response ) throws IOException {
138
- HttpStatusCode statusCode = response .getStatusCode ();
139
- handleError (response , statusCode , null , null );
137
+ handleError (response , response .getStatusCode (), null , null );
140
138
}
141
139
142
140
/**
@@ -159,46 +157,7 @@ public void handleError(ClientHttpResponse response) throws IOException {
159
157
*/
160
158
@ Override
161
159
public void handleError (URI url , HttpMethod method , ClientHttpResponse response ) throws IOException {
162
- HttpStatusCode statusCode = response .getStatusCode ();
163
- handleError (response , statusCode , url , method );
164
- }
165
-
166
- /**
167
- * Return error message with details from the response body. For example:
168
- * <pre>
169
- * 404 Not Found on GET request for "https://example.com": [{'id': 123, 'message': 'my message'}]
170
- * </pre>
171
- */
172
- private String getErrorMessage (int rawStatusCode , String statusText , @ Nullable byte [] responseBody , @ Nullable Charset charset ,
173
- @ Nullable URI url , @ Nullable HttpMethod method ) {
174
-
175
- StringBuilder msg = new StringBuilder (rawStatusCode + " " + statusText );
176
- if (method != null ) {
177
- msg .append (" on " ).append (method ).append (" request" );
178
- }
179
- if (url != null ) {
180
- msg .append (" for \" " );
181
- String urlString = url .toString ();
182
- int idx = urlString .indexOf ('?' );
183
- if (idx != -1 ) {
184
- msg .append (urlString , 0 , idx );
185
- }
186
- else {
187
- msg .append (urlString );
188
- }
189
- msg .append ("\" " );
190
- }
191
- msg .append (": " );
192
- if (ObjectUtils .isEmpty (responseBody )) {
193
- msg .append ("[no body]" );
194
- }
195
- else {
196
- charset = (charset != null ? charset : StandardCharsets .UTF_8 );
197
- String bodyText = new String (responseBody , charset );
198
- bodyText = LogFormatUtils .formatValue (bodyText , -1 , true );
199
- msg .append (bodyText );
200
- }
201
- return msg .toString ();
160
+ handleError (response , response .getStatusCode (), url , method );
202
161
}
203
162
204
163
/**
@@ -211,7 +170,8 @@ private String getErrorMessage(int rawStatusCode, String statusText, @Nullable b
211
170
* @see HttpClientErrorException#create
212
171
* @see HttpServerErrorException#create
213
172
*/
214
- protected void handleError (ClientHttpResponse response , HttpStatusCode statusCode ,
173
+ protected void handleError (
174
+ ClientHttpResponse response , HttpStatusCode statusCode ,
215
175
@ Nullable URI url , @ Nullable HttpMethod method ) throws IOException {
216
176
217
177
String statusText = response .getStatusText ();
@@ -238,6 +198,68 @@ else if (statusCode.is5xxServerError()) {
238
198
throw ex ;
239
199
}
240
200
201
+ /**
202
+ * Read the body of the given response (for inclusion in a status exception).
203
+ * @param response the response to inspect
204
+ * @return the response body as a byte array,
205
+ * or an empty byte array if the body could not be read
206
+ * @since 4.3.8
207
+ */
208
+ protected byte [] getResponseBody (ClientHttpResponse response ) {
209
+ return RestClientUtils .getBody (response );
210
+ }
211
+
212
+ /**
213
+ * Determine the charset of the response (for inclusion in a status exception).
214
+ * @param response the response to inspect
215
+ * @return the associated charset, or {@code null} if none
216
+ * @since 4.3.8
217
+ */
218
+ @ Nullable
219
+ protected Charset getCharset (ClientHttpResponse response ) {
220
+ MediaType contentType = response .getHeaders ().getContentType ();
221
+ return (contentType != null ? contentType .getCharset () : null );
222
+ }
223
+
224
+ /**
225
+ * Return an error message with details from the response body. For example:
226
+ * <pre>
227
+ * 404 Not Found on GET request for "https://example.com": [{'id': 123, 'message': 'my message'}]
228
+ * </pre>
229
+ */
230
+ private String getErrorMessage (
231
+ int rawStatusCode , String statusText , @ Nullable byte [] responseBody , @ Nullable Charset charset ,
232
+ @ Nullable URI url , @ Nullable HttpMethod method ) {
233
+
234
+ StringBuilder msg = new StringBuilder (rawStatusCode + " " + statusText );
235
+ if (method != null ) {
236
+ msg .append (" on " ).append (method ).append (" request" );
237
+ }
238
+ if (url != null ) {
239
+ msg .append (" for \" " );
240
+ String urlString = url .toString ();
241
+ int idx = urlString .indexOf ('?' );
242
+ if (idx != -1 ) {
243
+ msg .append (urlString , 0 , idx );
244
+ }
245
+ else {
246
+ msg .append (urlString );
247
+ }
248
+ msg .append ("\" " );
249
+ }
250
+ msg .append (": " );
251
+ if (ObjectUtils .isEmpty (responseBody )) {
252
+ msg .append ("[no body]" );
253
+ }
254
+ else {
255
+ charset = (charset != null ? charset : StandardCharsets .UTF_8 );
256
+ String bodyText = new String (responseBody , charset );
257
+ bodyText = LogFormatUtils .formatValue (bodyText , -1 , true );
258
+ msg .append (bodyText );
259
+ }
260
+ return msg .toString ();
261
+ }
262
+
241
263
/**
242
264
* Return a function for decoding the error content. This can be passed to
243
265
* {@link RestClientResponseException#setBodyConvertFunction(Function)}.
@@ -265,34 +287,4 @@ public InputStream getBody() {
265
287
};
266
288
}
267
289
268
- /**
269
- * Read the body of the given response (for inclusion in a status exception).
270
- * @param response the response to inspect
271
- * @return the response body as a byte array,
272
- * or an empty byte array if the body could not be read
273
- * @since 4.3.8
274
- */
275
- protected byte [] getResponseBody (ClientHttpResponse response ) {
276
- try {
277
- return FileCopyUtils .copyToByteArray (response .getBody ());
278
- }
279
- catch (IOException ex ) {
280
- // ignore
281
- }
282
- return new byte [0 ];
283
- }
284
-
285
- /**
286
- * Determine the charset of the response (for inclusion in a status exception).
287
- * @param response the response to inspect
288
- * @return the associated charset, or {@code null} if none
289
- * @since 4.3.8
290
- */
291
- @ Nullable
292
- protected Charset getCharset (ClientHttpResponse response ) {
293
- HttpHeaders headers = response .getHeaders ();
294
- MediaType contentType = headers .getContentType ();
295
- return (contentType != null ? contentType .getCharset () : null );
296
- }
297
-
298
290
}
0 commit comments