私はSpringブートでAPIを作成しているので、/error
マッピングを無効にしたいと考えています。スプリングブート無効/エラーマッピング
私はapplication.propertiesで次の小道具を設定している:私は/error
を打ったとき
server.error.whitelabel.enabled=false
spring.mvc.throw-exception-if-no-handler-found=true
spring.resources.add-mappings=false
は、しかし、私は得る:
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
ええ、私はちょうど迷惑であるこの正確なことをしました!もしバインドを取り除く方法があるのであれば、これを行わずに – ptimson
同じように、私はそれをすべて削除したら、今度はjsonの代わりにhtmlになります... – TheBakker