일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- JSTL
- 이클립스
- json
- 톰캣
- 전자정부 표준프레임워크
- spring form tag
- php
- checbox
- jquery
- maven
- RADIO
- @RequestBody
- SSL
- Oracle
- 문자열
- MYSQL
- 호환성
- switch
- DB
- null
- 한글
- 웹 플랫폼 설치 관리자
- 날짜
- 네이버스마트 에디터
- exception
- html
- HTML5
- java
- 스크립트
- 오라클
- 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 |