Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- katalon 자동화
- 피보나치 예제
- tomcat log
- 톰캣 실시간 로그
- java.sql.SQLSyntaxErrorException
- 피보나치함수
- katalon 비교
- git 연동
- katalon
- bfs 미로탐색 java
- 홈택스 해외주식 양도세
- 최대공약수 예제
- oracle group by
- katalon 사용법
- javascript 자동완성
- 한국투자증권 해외주식 양도세
- 재귀 예제
- 피보나치함수 예제
- 해외증권 양도세 한국투자증권
- 주식 양도세 신고방법
- js 자동완성
- 한국투자증권 양도세 신고
- 테스트 자동화
- 해외주식 양도세 신고
- 재귀함수 예제
- 국세청 해외주식 양도세 신고방식
- recursion example
- Katalon Recorder 사용법
- katalon xpath
- CSTS 폭포수 모델
Archives
- Today
- Total
엄지월드
mybatis mapper xml include 본문
1. 아래와 같이 sql id로 선언해준다.
<sql id="reUseSql">
...
...
</sql>
2. sql을 사용할 곳에서 선언해준다.
<include refid="reUseSql" />
3. 전체 코드
<?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.myapp.lms.course.mapper.CourseMapper">
<sql id="selectListWhere">
<if test="searchType != null and searchValue != null">
<choose>
<when test="searchType == 'phone'">
and phone like concat('%', #{searchValue}, '%')
</when>
<otherwise>
and
(
user_Id like concat('%', #{searchValue}, '%')
or
user_Name like concat('%', #{searchValue}, '%')
or
phone like concat('%', #{searchValue}, '%')
)
</otherwise>
</choose>
</if>
</sql>
<select id="selectListCount"
parameterType="com.myapp.lms.course.model.CourseParam"
resultType="long">
select count(*)
from member
where 1 = 1
<include refid="selectListWhere" />
</select>
</mapper>
'java > Spring' 카테고리의 다른 글
Comments