일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- html
- DB
- jquery
- json
- exception
- php
- maven
- spring form tag
- 이클립스
- 호환성
- 스크립트
- 날짜
- 한글
- java
- 문자열
- checbox
- null
- MYSQL
- 오라클
- 전자정부 표준프레임워크
- Oracle
- 톰캣
- HTML5
- switch
- SSL
- JSTL
- @RequestBody
- RADIO
- 웹 플랫폼 설치 관리자
- 네이버스마트 에디터
- Today
- Total
개인적인 정리
Type handler was null on parameter mapping for property '__frch_item_0.value'. 본문
Type handler was null on parameter mapping for property '__frch_item_0.value'.
yeon.Biju 2019. 6. 17. 18:11이클립스에서 mybatis 이용중 다음과 에러가 발생하였다.
### Error querying database. Cause: java.lang.IllegalStateException: Type handler was null on parameter mapping for property '__frch_item_0.value'. It was either not specified and/or could not be found for the javaType / jdbcType combination specified.
### Cause: java.lang.IllegalStateException: Type handler was null on parameter mapping for property '__frch_item_0.value'. It was either not specified and/or could not be found for the javaType / jdbcType combination specified.
<if test='deptCode !=null and deptCode !=""'>
deptCode in
<foreach collection="deptCodes" item="item" open="(" separator="," close=")">
#{item.value}
</foreach>
</if>
에서 위와 같은 오류 발생
#{item.value} --> #{item,jdbcType=VARCHAR} 로 변경하니 오류가 발생하지 않았음.
'DB > MyBATIS' 카테고리의 다른 글
ibatis to mybatis 전자정부프레임워크 (0) | 2019.03.29 |
---|---|
Caused by: org.xml.sax.SAXParseException: The content of element type ..... (0) | 2019.03.29 |