Internal 500(2)
-
[Thymeleaf] 템플릿 파일명 오타로 인한 500 에러 발생
Jump to SpringBoot 실습중 500 에러가 발생했다. 공개된 소스와 비교를 해도 완전히 동일한 하고 question_detail.html 파일에는 문제가 없다. 하지만 에러를 좀더 확인해보면.. question_detail 에서 참고하는 form_errors 가 없거나 찾지 못한다는 에러 로그가 보인다. question_detail.html 파일이 참고하는 템플릿의 파일명이 잘못되어 발생했다. form_errors.html 이 되어야 하지만 form_error.html 이라고 파일명 입력중 오타가 발생했다. STS 에서도 Problem 에 나타나지 않아 뭐가 에러 로그를 끝까지 확인하지 않고 대충 보고 지나서, 문제를 찾는데 시간이 더 걸렸다. 흑흑 https://github.com/cs79..
2023.03.06 -
[Jump to SpringBoot] Controller 500 Error 발생시키기
Jump to SpringBoot 2장 실습중 컨트롤러 부분에서 일부러 500 에러를 발생시키는 부분이 있다. 내부에서 어떤 코드를 참조하는지 시간내서 확인하는 것도 의미가 있겠지! Whitelabel Error Page This application has no explicit mapping for /error, so you are seeing this as a fallback. Sat Feb 25 18:16:22 KST 2023 There was an unexpected error (type=Internal Server Error, status=500). Circular view path [sbb]: would dispatch back to the current handler URL [/sbb] ag..
2023.02.25