Published 2021. 12. 14. 20:12
728x90
반응형
There is no READABLE property named '***' in class 'java.lang.String' 오류
단일값 파라미터를 전달받아 property 속성을 이용할 경우 발생할 수 있음
예시 👇
<update id="update" parameterClass="string">
<isNotEmpty property="id">
update user
set name = '권정열'
where id = #id#
</isNotEmpty>
</update>
단일 항목인 경우 property 속성 빼기 👇
<update id="update" parameterClass="string">
<isNotEmpty>
update user
set name = '권정열'
where id = #id#
</isNotEmpty>
</update>
반응형
'프로그래밍 > Mybatis' 카테고리의 다른 글
[Mybatis] <choose>, <when>, <otherwise> 사용법 (0) | 2022.03.11 |
---|---|
Invalid bound statement (not found) 오류 (0) | 2021.12.15 |
Mybatis의 isNull, isEmpty (0) | 2021.08.25 |
Cause: java.sql.SQLException: Invalid parameter object type. Expected 'java.lang.String' but found 'java.util.LinkedHashMap'.; (0) | 2021.08.24 |
09.28(Mybatis 활용) (0) | 2020.09.28 |