Код: Выделить всё
jersey-serlvet
org.glassfish.jersey.servlet.ServletContainer
jersey.config.server.provider.packages
com.restapi
1
jersey-serlvet
/api/*
< /code>
У меня есть customexceptionmapper, чтобы ответить пользовательским сообщением: < /p>
@Priority(1)
@Provider
public class CustomJsonMapperException implements ExceptionMapper {
@Override
public Response toResponse(JsonMappingException bex) {
return Response.status(400).entity(MY_CUSTOM_MESSAGE).build();
}
}
Подробнее здесь: https://stackoverflow.com/questions/756 ... ith-jersey