danDevlog

org.apache.ibatis.reflection.ReflectionException: There is no getter for property named '???' in 'class java.lang.Integer' 본문

오류 및 편의성 모음

org.apache.ibatis.reflection.ReflectionException: There is no getter for property named '???' in 'class java.lang.Integer'

단데기이 2022. 6. 3. 09:53
728x90
org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'bookId' in 'class java.lang.Integer'

mapper인터페이스 -> mapper.xml -> service인터페이스 -> serviceImpl -> Controller 에 걸쳐서

 

view에 값들을 뿌릴 수 있도록 기능을 구현하던 중, 테스트까지 모두 끝냈지만 뷰에서 해당 링크로 넘어가는 과정에서 발생한 오류이다.

 

정신이 없었는지 단순한 오타였다.

 

수정 전

where bookId = ${bookId}

 

수정 후

where bookId = #{bookId}

 

아마 view에서 JSTL 을 계속 쓰다보니 햇갈렷나보다

Comments