Friday, January 29, 2016

Check HTTP Response Status for Success

All HTTP 2xx mean successful status codes.
So, it's fairly easy to check, but a bit harder to not duplicate those checks everywhere:)

##Code Samples: ###General universal way:

if (statusCode < 200 || statusCode > 299) {
    // throws, redirects, server errors, lions and tigers and bears! 
}

###The simplest java way:

if (statusCode / 100 != 2) {
    // throws, redirects, server errors, lions and tigers and bears! 
}

status codes are integers, so this expression will be an integer division.

###No Magic Numbers way:

if (Response.Status.fromStatusCode(statusCode).getFamily() 
        != Response.Status.Family.SUCCESSFUL) {
    // throws, redirects, server errors, lions and tigers and bears! 
}

###No Magic Numbers Spring way:

if (!HttpStatus.valueOf(statusCode).is2xxSuccessful()) {
    // throws, redirects, server errors, lions and tigers and bears! 
}

see Also


14 comments:

  1. This is realy a Nice blog post read on of my blogs It is really helpful article please read it too my blog FACEBOOK IMAGES NOT LOADING.

    ReplyDelete