이야기앱 세상

MyBatis 사용시 CLOB 데이터가 출력되지 않을 때 본문

IT/JSP

MyBatis 사용시 CLOB 데이터가 출력되지 않을 때

storya 2016. 3. 23. 12:39

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>

반응형
Comments