일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- jquery
- 문자열
- MYSQL
- switch
- checbox
- SSL
- RADIO
- 한글
- php
- 호환성
- @RequestBody
- Oracle
- exception
- 웹 플랫폼 설치 관리자
- 스크립트
- html
- 톰캣
- 네이버스마트 에디터
- null
- 오라클
- 전자정부 표준프레임워크
- spring form tag
- DB
- 이클립스
- HTML5
- 날짜
- maven
- java
- JSTL
- json
- Today
- Total
개인적인 정리
ibatis to mybatis 전자정부프레임워크 본문
전자정부프레임워크에서 ibatis를 mybatis로 변경하는 중인데..
참고URL은 아래와 같다.
http://www.egovframe.go.kr/wiki/doku.php?id=egovframework:rte2:psl:data:jpa:mybatis
http://www.egovframe.go.kr/wiki/doku.php?id=egovframework:rte2:psl:dataaccess:ibatis_vs_mybatis
2. 바꾼 부분들
1) ServiceImpl 파일
AbstractServiceImpl --> EgovAbstractServiceImpl
2) DAO파일
EgovAbstractDAO --> EgovComAbstractDAO
3)DAO파일
selectByPk, list --> selectOne, selectList로 변경
4) mapper 파일
resultClass --> resultType으로 변경
5)mapper 파일
parameterClass --> parameterType으로 변경
6) mapper 파일
<isNotEmpty property="atchFileId">
</isNotEmpty>
를
<if test='atchFileId != null and atchField !=""' >
</if>
로 변경
7) mapper 파일
#변수명# --> #{변수명} 으로 변경
8) mapper 파일
typeAlias 를 mapper파일에서 삭제하고 config파일로 이동
9) mapper 파일
<!DOCTYPE sqlMap PUBLIC "-//iBATIS.com//DTD SQL Map 2.0//EN" "http://www.ibatis.com/dtd/sql-map-2.dtd">
-->
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
으로 변경
10) mapper 파일
<sqlMap namespace="aaaDAO">
</sqlMap>
-->
<mapper namespace="aaaDAO">
</mapper>
으로 변경
11) mapper 파일
columnIndex 삭제
ibatis 에서 columnIndex를 습관적으로 잘 사용해왔는데.. 삭제함
12) mapper 파일
resultMap 변경
<resultMap id="aaaaaa" resultClass="egovframework.aaaa.bbb.cccc.ddddd">
</resultMap>
-->
<resultMap id="aaaaaa" resultType="egovframework.aaaa.bbb.cccc.ddddd">
</resultMap>
으로 변경
13) mapper 파일
iterator --> foreach로 변경
http://www.egovframe.go.kr/wiki/doku.php?id=egovframework:rte2:psl:dataaccess:mybatis_dynamic_sql
'DB > MyBATIS' 카테고리의 다른 글
Type handler was null on parameter mapping for property '__frch_item_0.value'. (0) | 2019.06.17 |
---|---|
Caused by: org.xml.sax.SAXParseException: The content of element type ..... (0) | 2019.03.29 |