Skip to content

Improve message for HttpStatusCodeException with empty status text #22162

Closed
@spring-projects-issues

Description

@spring-projects-issues

Jerzy Krolak opened SPR-17631 and commented

I noticed that in RestTemplate-based client, I'm getting error messages like 404 null and similar. Then I found that the Spring Boot application returns error statuses like the following:

> curl -v http://localhost:8080/page-not-found
(...)
< HTTP/1.1 404
< Content-Type: application/json;charset=UTF-8

which will look like this:

org.springframework.web.client.HttpClientErrorException$NotFound: 404 null

Others return results like:

curl -v http://google.com/page-not-found
(...)
< HTTP/1.1 404 Not Found
< Content-Type: text/html; charset=UTF-8

Which results in a nice looking error message:

org.springframework.web.client.HttpClientErrorException$NotFound: 404 Not Found

I'm not sure if I should raise is as a bug - it does not seem that the status message is mandatory.

Is this a bug, or a feature?


Affects: 5.1.3

Issue Links:

Metadata

Metadata

Assignees

Labels

in: webIssues in web modules (web, webmvc, webflux, websocket)type: enhancementA general enhancement

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions