From 23f8b345b940841f5801245f191520698904779e Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Sat, 11 Mar 2023 14:36:45 +0300 Subject: Revert "Switch to Tomcat and omit its exceptions from logs" This reverts commit 64e6b703b7fa50a31dc0b73ec85230aa99c77bd5. --- src/main/java/com/juick/www/api/Index.java | 20 +------------------- 1 file changed, 1 insertion(+), 19 deletions(-) (limited to 'src/main/java/com') diff --git a/src/main/java/com/juick/www/api/Index.java b/src/main/java/com/juick/www/api/Index.java index 1c990c65..7430c22d 100644 --- a/src/main/java/com/juick/www/api/Index.java +++ b/src/main/java/com/juick/www/api/Index.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2023, Juick + * Copyright (C) 2008-2021, Juick * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -33,7 +33,6 @@ import org.springframework.web.bind.annotation.RestController; import org.springframework.web.context.request.NativeWebRequest; import org.springframework.web.servlet.support.ServletUriComponentsBuilder; -import java.io.IOException; import java.net.URI; /** @@ -62,21 +61,4 @@ public class Index { public ResponseEntity badRequest(final ConstraintViolationException exception) { return ResponseEntity.badRequest().body(exception.getMessage()); } - @ExceptionHandler(IOException.class) - public ResponseEntity handleAbortedConnection(final IOException ex) - { - // avoids compile/runtime dependency by using class name - if (ex.getClass().getName().equals("org.apache.catalina.connector.ClientAbortException")) - { - return null; - } - - // log and return error page for any other IOExceptions - if (logger.isWarnEnabled()) - { - logger.warn("IO Error", ex); - } - - return ResponseEntity.badRequest().body(ex.getMessage()); - } } -- cgit v1.2.3