iBatis resultMap의 구조(?)
Posted 2007. 8. 16. 16:54다중테이블에 대한 조인을 처리하면서 관심을 갖게된 resultMap의 속성을 좀더 파헤쳐 보자.
<resultMap id=”resultMapName” class=”your.domain.Class”
[extends=”parent-resultMap-id”] <== 상속받을 클래스를 정의한 resultMap id
[groupBy=“some property list”]> <== group by List?
<result property=”propertyName” column=”COLUMN_NAME”
[columnIndex=”1”] [javaType=”int”] [jdbcType=”NUMERIC”]
[nullValue=”-999999”] [select=”someOtherStatement”]
[resultMap=“someOtherResultMap”]
[typeHandler=“com.mydomain.MyTypehandler”]
/>
</resultMap>
음 상세한 의미와 사용법은 좀더 테스트를 해보거나 찾아봐야겠다.
<resultMap id=”resultMapName” class=”your.domain.Class”
[extends=”parent-resultMap-id”] <== 상속받을 클래스를 정의한 resultMap id
[groupBy=“some property list”]> <== group by List?
<result property=”propertyName” column=”COLUMN_NAME”
[columnIndex=”1”] [javaType=”int”] [jdbcType=”NUMERIC”]
[nullValue=”-999999”] [select=”someOtherStatement”]
[resultMap=“someOtherResultMap”]
[typeHandler=“com.mydomain.MyTypehandler”]
/>
</resultMap>
음 상세한 의미와 사용법은 좀더 테스트를 해보거나 찾아봐야겠다.
'개발노트 > iBatis/myBatis' 카테고리의 다른 글
iBatis에서 insert된 자동생성값 알아오기 - MySQL버전 (0) | 2007.08.24 |
---|---|
iBatis와 전통적인 ORM과의 차이점 (0) | 2007.08.21 |
여러개의 테이블을 조인한 결과는 어디에 담지? (0) | 2007.08.13 |
iBatis 예제 책보고 따라하기 (0) | 2007.08.13 |
강력한 ORM iBatis 그 유래는? (0) | 2007.08.13 |
- Filed under : 개발노트/iBatis/myBatis