Jersey returns 404 with any error status code?

后端 未结 2 931
猫巷女王i
猫巷女王i 2020-11-27 08:09

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

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

and I test it

2条回答
  •  栀梦
    栀梦 (楼主)
    2020-11-27 08:37

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

    @EnableAutoConfiguration(exclude = { ErrorMvcAutoConfiguration.class })
    

提交回复
热议问题