Notice
Recent Posts
Recent Comments
Link
이야기앱 세상
MyBatis 사용시 CLOB 데이터가 출력되지 않을 때 본문
Oracle 10g를 사용할 때 MyBatis를 이용해 CLOB 데이터의 insert를 정상적으로 처리되는데 select할 때 값을 읽어 오지 못 한다면 아래와 같이 처리할 수 있다.
맵핑되는 xml 파일의 resultMap 태그를 만들고 타입을 지정함.
<resultMap id="BoardResult" type="Board" >
<result property="content" column="content" jdbcType="CLOB" javaType="java.lang.String" />
</resultMap>
<select id="selectBoard" parameterType="Integer" resultMap="BoardResult">
SELECT *
FROM board
WHERE seq = #{seq}
</select>
반응형
'IT > JSP' 카테고리의 다른 글
myBatis insert문 사용시 동적 sql selectKey 사용하기 (0) | 2016.03.23 |
---|---|
MyBatis 사용시 null parameter 에러 발생시 처리 (0) | 2016.03.23 |
iBatis에서 null parameter 오류 발생시 해결 방법 (0) | 2016.03.23 |
iBatis에서 null 데이터 select 처리 (0) | 2016.03.23 |
iBatis 사용시 CLOB 데이터가 출력되지 않을 때 (0) | 2016.03.23 |
Comments