Falschen Status-Code bei start/stop-Fehler korrigiert
authorKai Moritz <kai@juplo.de>
Sun, 10 Apr 2022 17:49:44 +0000 (19:49 +0200)
committerKai Moritz <kai@juplo.de>
Sun, 10 Apr 2022 17:50:19 +0000 (19:50 +0200)
src/main/java/de/juplo/kafka/DriverController.java

index b3af107..ce4df68 100644 (file)
@@ -1,8 +1,10 @@
 package de.juplo.kafka;
 
 import lombok.RequiredArgsConstructor;
+import org.springframework.http.HttpStatus;
 import org.springframework.web.bind.annotation.ExceptionHandler;
 import org.springframework.web.bind.annotation.PostMapping;
+import org.springframework.web.bind.annotation.ResponseStatus;
 import org.springframework.web.bind.annotation.RestController;
 
 import java.util.concurrent.ExecutionException;
@@ -28,8 +30,9 @@ public class DriverController
   }
 
   @ExceptionHandler
+  @ResponseStatus(HttpStatus.BAD_REQUEST)
   public ErrorResponse illegalStateException(IllegalStateException e)
   {
-    return new ErrorResponse(e.getMessage(), 400);
+    return new ErrorResponse(e.getMessage(), HttpStatus.BAD_REQUEST.value());
   }
 }