이 글은 주로 Spring Boot 전역 예외 처리 관련 정보를 자세하게 소개하며, 관심 있는 친구들은 참고할 수 있습니다.
이 글은 참고용으로 Spring Boot 전역 예외 처리를 공유합니다. 구체적인 내용은 다음과 같습니다.
1. 백그라운드 처리 예외
a, thymeleaf 종속성 도입
<!-- thymeleaf模板插件 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency>
b, application.properties 파일에서 속성 설정
#关闭thymeleaf模板的缓存 spring.thymeleaf.cache=false
c, 백그라운드 처리 핸들러 작성
d, 백그라운드 예외 인쇄
---------------기본 오류
2017-06-16 14:54:05.314 WARN 6892 --- [nio-8080 -exec-1 ] .m.m.a.ExceptionHandlerExceptionResolver: 핸들러 실행으로 인한 해결된 예외: org.springframework.dao.IncordirectResultSizeDataAccessException: 결과는 둘 이상의 요소를 반환합니다. 중첩 예외는 javax.persistence.NonUniqueResultException입니다. 결과는 둘 이상의 요소를 반환합니다
2. 페이지 처리 예외
a, html 템플릿 페이지 작성
import org.springframework.web.bind.annotation.ControllerAdvice; import org.springframework.web.bind.annotation.ExceptionHandler; @ControllerAdvice public class GlobalExceptionHandler { //设置此handler处理所有异常 @ExceptionHandler(value=Exception.class) public void defaultErrorHandler(){ System.out.println("-------------default error"); } }
b, 핸들러 수정
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity3"> <head> <meta charset="UTF-8" /> <title>Insert title here</title> </head> <body> <h1 th:inlines="text">异常出现啦</h1> ${messages} </body> </html>
c, 페이지 액세스 결과
위 내용은 Spring Boo의 전역 예외 처리 방법 소개의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!