Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Jersey returns 404 with any error status code?

I have this useless endpoint in path "/test":

@PUT
public Response doSomething() {
  return Response.status(409).build();
}

and I test it this way:

@Test
public void uselessTest() {
  put("/test").then().assertThat().statusCode(409);
}

But I get an assertion error:

Expected status code <409> doesn't match actual status code <404>.

This happens in more codes: 400, 500... apart from 200.

I'm using Spring Boot. If I put a breakpoint in my endpoint method when I run the test, execution stops there, so the request in the test is done properly. If I change the status code (in resource and in the test, too) to 200, test passes.

What is happening?

like image 437
Héctor Avatar asked Apr 13 '16 11:04

Héctor


2 Answers

The default behavior with Jersey, when there is an error status (4xx, 5xx), is to use the servlet's Response.sendError, which results in a redirect to an error page. Since there is no error page set up, it results in a 404.

We can change this behavior by setting the Jersey property

ServerProperties.RESPONSE_SET_STATUS_OVER_SEND_ERROR

You can do this in your ResourceConfig subclass

public JerseyConfig extends ResourceConfig {
    public JerseyConfig() {
        property(ServerProperties.RESPONSE_SET_STATUS_OVER_SEND_ERROR, true);
    }
}

Or (with Spring Boot) you can add it in your application.properties file.

spring.jersey.init.jersey.config.server.response.setStatusOverSendError=true
like image 61
Paul Samsotha Avatar answered Nov 05 '22 19:11

Paul Samsotha


I had this problem as well, and solved it by excluding ErrorMvcAutoConfiguration from the spring boot auto config:

@EnableAutoConfiguration(exclude = { ErrorMvcAutoConfiguration.class })
like image 4
Jan Hoeve Avatar answered Nov 05 '22 20:11

Jan Hoeve