I have an API, when I call it through postman it gives the below response on the following cases:
Case1: status code: 200
{"success": "student record is present",
"error": null}
Case2: status code: 422
{"success": null,
"error": "studentname should not contain numerics"}
I want to achieve the same above results of two case through microprofile restclient using quarkus/java project. So created the below classes
Java DTO Class:
public class StudentResponse{
private String success;
private String error;
public String getSuccess() {
return success;
}
public void setSuccess(String success) {
this.success = success;
}
public String getError() {
return error;
}
public void setError(String error) {
this.error = error;
}
@Override
public String toString() {
return "StudentResponse [success=" + success + ", error=" + error + "]";
}
}
Rest-Client Class:
package com.tatadigital.rest.service;
@RegisterRestClient(configKey = "student-client-api")
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
public interface StudentService {
@POST
@Path("/checkStudent")
StudentResponse checkStudent(@RequestBody StudentCheck studentCheck);
}
Finally, I tested it through the app, and for case-1, receiving the response body with status code 200 as expected. But for case-2 as the status code is 422 the exception is thrown and getting handled but in the exception object we have response object and inside it we have response entity. This response entity is null and even studentResponse is also null. I want to get the error message(json response) in 422 status code case with microprofile rest client case. Any approach/suggestion to achieve this?
Unfortunately this isn't something supported by the Microprofile client. However this sounds like a useful feature, so do you mind opening an issue in the Quarkus issue tracker?