블로그 이름

[iBatis] ResultMap 사용 시 "The error happened while setting a property on the result object" Error 발생하는 현상 본문

개발/Database

[iBatis] ResultMap 사용 시 "The error happened while setting a property on the result object" Error 발생하는 현상

Hide 2025. 2. 11. 23:02

에러로그는 다음과 같다.

 

Caused by: org.springframework.jdbc.UncategorizedSQLException: SqlMapClient operation; uncategorized SQLException for SQL []; SQL state [null]; error code [0];  

 

 

ResultMap으로 받을 class의 dataType이 미스매치인 경우라고 한다. 

resultType이 int와 같은 상수일 경우 return 값이 null이면 같은 에러가 발생한다고 한다.

 

resultType에 들어갈 수 있는 값이 반환되고 있는지 살펴보면 된다.