티스토리 뷰
개발을 하다보면 이런경우가 많이 생긴다.
동일한 데이터를 가지고 오지만 조회하고자 하는 컬럼에 따라 where 구문만 다르게 하고 싶을때.
예를들면
SELECT name, id FROM user Where name = ?
SELECT name, id FROM user Where id = ?
각 동일한 select 구절이지만 Where 조건이 다르다.
이럴때 overload를 사용하면 되겠지라고 간단하게 생각했다가 낭패가 생겼다.
<select id="userList" resultMap="userMap"> SELECT name, id FROM user <if test="name != null "> WHERE name = #{name} </if> <if test="id != null "> WHERE id = #{id} </if>
다음과 같은 오류를 확인할 수 있다.
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter 'name' not found.
Available parameters are [param1, name]
같은 쿼리를 반복해서 작성하고싶지 않아 Overloading을 지원안하는지 찾아봤더니 .
https://github.com/mybatis/mybatis-3/issues/511
여기에서 현재버전 mybatis는 오버로딩을 지원안한다는 답변을 확인할수 있었다.
오.. 주여.
다른 방법을 찾아봐야겠다.
'프로그램 > JAVA' 카테고리의 다른 글
Spring Mybatis WARN BeanCreationException 버전문제 (0) | 2017.03.07 |
---|---|
객체지향언어 자바 (0) | 2017.02.01 |
스프링프레임웍 호스트설정시 주의사항 (0) | 2017.01.11 |
Aspectj로 공통로깅 만들기 (0) | 2016.12.27 |
톰캣 common-dbcp (0) | 2016.10.18 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- mybatis overload
- java.lang.UnsatisfiedLinkError
- jenkins user list
- select count(*) performence
- 스프링 크로스도메인
- 인덱스 자료구조
- 젠킨스 윈도우 설치
- response server header
- springboot server header
- 스프링 마이바티즈 연동오류
- 작은거에소스라치게놀라는나
- mysql 인덱스
- oauth sso 차이
- no net in java.library.path
- 객체지향언어 자바
- BeanCreationException
- common-dbcp
- mysql count 성능
- Google ssh console
- mybatis overloading
- 원격접속 무료툴
- 젠킨스 api
- jenkins remote api
- mysql count
- 원격접속툴
- spring mybatis
- google vm ssh
- jenkins asyncpeople
- nested exception is org.apache.ibatis.binding.BindingException\
- a태그 onclick이벤트
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함