2019.09.16
MyBatis를 사용하면서 여러번 AS를 사용해야하는 불편함이 있었는데 resultMap 한번으로 AS를 쓸 필요가 없다는 것을 알게되었다
역시 툴은 모든 기능을 제공하고 있다
단지 내가 모를 뿐...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?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">
<result column="subject_code" property="subjectCode"/>
<result column="member_id" property="memberId"/>
<result column="subject_number" property="subjectNumber"/>
<result column="subject_name" property="subjectName"/>
<result column="subject_date" property="subjectDate"/>
</resultMap>
<select id="subjectList" resultMap="subjectMap">
SELECT
subject_code
,member_id
,subject_number
,subject_name
,subject_date
FROM subject
</select>
</mapper>
|
'교육 > Spring Boot' 카테고리의 다른 글
#95 thymeleaf 페이지 전환 후 동적 select 값 고정 (0) | 2019.09.30 |
---|---|
#89 thymeleaf th:include을 이용하여 레이아웃 분리 (0) | 2019.09.20 |
#75 Spring 인터셉터 로그인체크 (0) | 2019.08.29 |
#63 Spring Boot thymeleaf 변수를 script에서 사용하기 (0) | 2019.08.09 |
#62 Spring Boot 페이징 처리 (0) | 2019.08.08 |