com.fitbur.fasterxml.jackson.jaxrs.json.JsonMappingExceptionMapper Maven / Gradle / Ivy
package com.fitbur.fasterxml.jackson.jaxrs.json;
import com.fitbur.fasterxml.jackson.databind.JsonMappingException;
import javax.ws.rs.core.Response;
import javax.ws.rs.ext.ExceptionMapper;
import javax.ws.rs.ext.Provider;
/**
* Implementation if {@link ExceptionMapper} to send down a "400 Bad Request"
* response in the event that unmappable JSON is received.
*/
@Provider
public class JsonMappingExceptionMapper implements ExceptionMapper {
public Response toResponse(JsonMappingException exception) {
return Response.status(Response.Status.BAD_REQUEST).entity(exception.getMessage()).type("text/plain").build();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy