I've a Spring Boot 2 REST application. I'm consuming REST from Angular and recentely I made an Android application using the Spring for Android 2.0.0M3 library.
Usually I make a REST call like this:
private class Login2 extends AsyncTask<Void, Void, ResponseEntity<JwtAuthenticationResponse>> {
private RestClientException error = null;
@Override
protected void onPreExecute() {
super.onPreExecute();
mProgressBar.setVisibility(View.VISIBLE);
}
@Override
protected ResponseEntity<JwtAuthenticationResponse> doInBackground(Void... params) {
RestTemplate restTemplate = new RestTemplate();
restTemplate.getMessageConverters().add(new MappingJackson2HttpMessageConverter());
try {
String url = UtilityFunctions.getBaseUrl(LoginActivity.this) + Globle.LOGIN;
ResponseEntity<JwtAuthenticationResponse> jwtToken = restTemplate.postForEntity(url, new LoginRequest(mEditTextUserName.getText().toString(), mEditTextPassword.getText().toString()), JwtAuthenticationResponse.class);
return jwtToken;
} catch (RestClientException e) {
this.error = e;
Logcat.e(TAG, e.getMessage());
return null;
}
}
@Override
protected void onPostExecute(ResponseEntity<JwtAuthenticationResponse> response) {
//hide progress bar
mProgressBar.setVisibility(View.GONE);
if(error != null){
String title = "";
new AlertDialog.Builder(LoginActivity.this)
.setTitle(Html.fromHtml("<font color='#04C1D9'>" + title + "</font>"))
.setMessage(error.getMessage())
.setPositiveButton(getResources().getString(R.string.ok), null)
.show();
}
if (response != null) {
HttpStatus status = response.getStatusCode();
JwtAuthenticationResponse body = response.getBody();
}
}
}
The server return 2 different types of Exceptions. Normal exception and validation exception. A normal exception looks like this:
{
"timestamp": "2018-05-19T08:49:23.689+0000",
"status": 401,
"error": "Unauthorized",
"message": "Credenziali non valide. Controllare i dati inseriti e ripetere l'operazione.",
"path": "/api/v1/auth"
}
A validation exception looks like this:
{
"errors" : [ {
"entity" : "Hotel",
"property" : "fax",
"invalidValue" : "+39 ",
"message" : "Il numero di telefono non è valido. Dovrebbe essere nel formato E.123 internazionale (https://en.wikipedia.org/wiki/E.123)."
} ]
}
My Android code works well if I've not exception, but I have one (let's say a 401) the RestClientException
has not all information returned in the JSON from the server (in short I don't have the body).
How can I manage both a typed reply and a structured exception in Android with Spring library?