작성한 JS에 쿼리 결과가 나오지 않아 확인해보니 개발자도구 -> console에 Uncaught TypeError 오류가 발생했다. 로그를 확인해보니Controller -> Service -> Mapper -> Mapper.xml 까지는 순서대로 잘 진행되지만,쿼리의 결과가 NULL로 출력. 1) DB에서 확인해보니 정상적으로 출력되는 것을 확인.2) 필요한 Parameter 값들 정상적으로 들어감.3) list의 모든 elements가 null인 상황 -> 원인은 DB에서 쓰던 한글별칭 그대로 Mapper.xml에 가져다 써서 그런거였다. SELECT A AS 이름 , B AS 나이 이런식으로 한글이들어가있던거였다. SELECT A AS NAME ..
** 개인 프로젝트에서 발생함 ** io.undertow.request - UT005023: Exception handling request to /error이라는 오류 메시지가 출력되면서프로젝트 구동이 안되는 현상이다. RuntimeException이 발생하면서 : org.springframework.web.util.NestedServletException: Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templateserror.html]") 이..