Spring Boot Rest 컨트롤러에서 기본 JSON 오류 응답 수정 현재 스프링 부트 오류 응답에는 다음과 같은 표준 내용이 포함되어 있습니다. { "timestamp" : 1426615606, "exception" : "org.springframework.web.bind.MissingServletRequestParameterException", "status" : 400, "error" : "Bad Request", "path" : "/welcome", "message" : "Required String parameter 'name' is not present" } 응답의 '예외' 속성을 제거할 방법을 찾고 있습니다.이것을 달성할 수 있는 방법이 있나요?에러 처리의 메뉴얼에 기재되어 있듯이, 독자..