Я создаю API с Spring Boot, поэтому хочу отключить отображение /error
.
Я установил следующие реквизиты в application.properties:
server.error.whitelabel.enabled=false
spring.mvc.throw-exception-if-no-handler-found=true
spring.resources.add-mappings=false
Однако, когда я нажимаю /error
, я получаю:
HTTP/1.1 500 Internal Server Error
Server: Apache-Coyote/1.1
Content-Type: application/json;charset=UTF-8
Transfer-Encoding: chunked
Date: Wed, 03 Aug 2016 15:15:31 GMT
Connection: close
{"timestamp":1470237331487,"status":999,"error":"None","message":"No message available"}
Необходимый результат
HTTP/1.1 404 Internal Server Error
Server: Apache-Coyote/1.1