1
而不是爲404的錯誤頁面,我想在我的Spring Boot應用程序中將其視爲正常異常。有什麼方法可以將404錯誤視爲異常,而不是將它轉發到/error
頁面。Spring Boot將404視爲常規異常
我的總體目標基本上是這樣使用來治療我的存在:
@ControllerAdvice
@RestControllerAdvice
public class MyClass {
@ExceptionHandler (...)
public ResponseEntity<?> doStuff(Throwable t) {
// ...
}
}