spring-boot-starter-web의 기본 JSON 오류 응답은 어디에서 왔으며 어떻게 조정합니까?
저는 지금까지 봄부츠 프로젝트에 매우 만족하지만, 어떻게 모든 것이 접착제로 연결되어 있는지에 대한 이해를 깊게 하고 싶습니다.spring-boot-starter-web, spring-boot-starter-data-jpa 및 hateoas를 사용하여 멋진 작동하는 REST 백엔드를 조립할 수 있었습니다.하지만 데이터 무결성 위반이 이렇게 JSON 출력으로 멋지게 변환되는 방법이 궁금합니다.저는 사실 제공되는 정보가 마음에 드는데, 어떻게 하면 JSON으로 변환되는 DataObject를 재사용할 수 있는지 궁금합니다.나는 단지 그것이 어디에서 왔고 어디에서 구성되었는지 이해할 수 없습니다.여러분들이 저를 도와주시거나 문서의 관련 부분이나 소스 코드를 알려주시기 바랍니다.
{
"readyState": 4,
"responseText": "{\"timestamp\":1423155860435,\"status\":500,\"error\":\"Internal Server Error\",\"exception\":\"org.springframework.dao.InvalidDataAccessResourceUsageException\",\"message\":\"could not extract ResultSet; SQL [n/a]; nested exception is org.hibernate.exception.SQLGrammarException: could not extract ResultSet\",\"path\":\"/api/catalog/colorfamilies\"}",
"responseJSON": {
"timestamp": 1423155860435,
"status": 500,
"error": "Internal Server Error",
"exception": "org.springframework.dao.InvalidDataAccessResourceUsageException",
"message": "could not extract ResultSet; SQL [n/a]; nested exception is org.hibernate.exception.SQLGrammarException: could not extract ResultSet",
"path": "/api/catalog/colorfamilies"
},
"status": 500,
"statusText": "Internal Server Error"
}
도와줘서 고마워, 마리우스
출력은 Spring Boot에 의해 생성됩니다.BasicErrorController
응용 프로그램이 Spring MVC를 사용하여 예외를 처리하지 않았을 때 폴백으로 사용됩니다.ExceptionHandler
또는ControllerAdvice
예를 들어) 또는 컨테이너 오류 페이지입니다.
JSON은 다음을 구현하여 생성됩니다.ErrorAttributes
기본적으로 Spring Boot은DefaultErrorAttributes
직접 생성하여 사용자 정의할 수 있습니다.@Bean
그것을 실행하는ErrorAttributes
.
자세한 내용은 Spring Boot 설명서의 오류 처리 섹션을 참조하십시오.
언급URL : https://stackoverflow.com/questions/28350445/where-does-the-default-json-errors-response-in-spring-boot-starter-web-comes-fro
'source' 카테고리의 다른 글
+=가 목록에서 예기치 않게 작동하는 이유는 무엇입니까? (0) | 2023.07.10 |
---|---|
Wi-Fi를 통해 Android 응용 프로그램을 실행/설치/디버깅하시겠습니까? (0) | 2023.07.10 |
오라클이 제약 조건을 삭제/재작성하지 않고 캐스케이드 삭제를 수행하도록 강제하는 방법 (0) | 2023.07.10 |
Java가 Sun/Oracle/OpenJDK인지 어떻게 알 수 있습니까? (0) | 2023.07.10 |
vuex와 v-bind:class를 함께 작동할 수 없습니다. (0) | 2023.07.10 |