MyBatise 의 필요성
- DB 연동시 중복되던 코드들을 줄일 수 있다.
- Sql 문 작성시 편하게 작성할 수 있다.
- MyBatise 설치하는 방법 : https://sallykim5087.tistory.com/159?category=875288
[.xml 문서 작성 예시]
1
2
3
4
5
6
7
8
9
10
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.gura.spring05.mybatis.MemberMapper">
<!-- sql 문을 적을 문서 -->
<select id="getlist" resultType="com.gura.spring05.member.dto.MemberDto">
SELECT num, name, addr
FROM member
ORDER BY num ASC
</select>
</mapper>
|
cs |
MyBatise로 DB 연동하기(Dao 와 Mapper.xml 문서와의 관계)
'Mybatis' 카테고리의 다른 글
[My Batis] 동적 쿼리문작성하기 (0) | 2020.03.23 |
---|---|
[My Batise] My Batise 라이브러리 설치/ Eclipse 플러그인 / servlet-context.xml 문서 해석 (0) | 2020.01.30 |