Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- CSS
- Oracle
- mybatis
- JVM
- eGov
- sql
- select
- jQuery
- 과정평가형
- eGovFramework
- 오류
- array
- html
- 배열
- web.xml
- Java
- TO_DATE
- json
- was
- Database
- 태그
- 함수
- spring
- POI
- 암호화
- 개념
- javascript
- input
- controller
- Ajax
Archives
- Today
- Total
web developer
[iBatis] ParameterClass가 String일 경우 isNotEmpty property 설정여부 본문
Persistence Framework/iBatis, MyBatis
[iBatis] ParameterClass가 String일 경우 isNotEmpty property 설정여부
trueman 2022. 4. 21. 16:04728x90
728x90
<select id="selectCity" parameterClass="String" resultClass="cityVO">
select ssg_nm
from city
where 1=1
<isNotEmpty property="sgg_cd">
WHERE SSG_CD = #sgg_cd#
</isNotEmpty>
</select>
com.ibatis.common.beans.ProbeException : There is no READABLE property named 'str' in class 'java.lang.String'
위와 같은 에러가 발생한다.
iBatis에서 파라미터가 단일(String, Int)일 경우 isNotEmpty, isNotNull 등에 대해 property를 설정하지 않아야 한다.
728x90
728x90
'Persistence Framework > iBatis, MyBatis' 카테고리의 다른 글
[myBatis/SQL] LIKE + CONCAT / DBMS별 sql문 (0) | 2022.03.02 |
---|---|
[iBatis] EgovMap, resultClass, parameterClass 정의와 예시 (0) | 2022.02.09 |
[ibatis/Mybatis] ibatis/Mybatis에서 #{}, ${} 차이 (0) | 2022.01.05 |