티스토리 뷰

키워드 검색을 구현 하던 중 Mapper에서 오류 발생

  • 검색어가 없으면 전체 테이블 리스트를 출력
  • 검색어가 있으면 검색어가 포함된 리스트 출력
<select id="getList" parameterType="String" resultType="Dto">
    select * from table 
    <if test="search != null">
    where column_name like '%'||#{search}||'%'
    </if>
</select>

org.apache.ibatis.reflection.ReflectionException:There is no getter for property named 'search' in 'class java.lang.String'

-> String 클래스안에 getter가 없다..?

 

  • mapper에서 <if> 안에서 변수를 사용할 때 mybatis는 변수안의 값을 getter방식으로 꺼내온다.
  • String은 getter방식이 아니므로 오류가 난다.

해결방법

1. DTO를 만들어서 getter, setter 구현

public class SearchDTO {
	private search;
    
    public String getSearch() {
    	return search;
    }
    public void setSearch() {
    	this.search = search;
    }
}
<select id="getList" parameterType="SearchDTO" resultType="ResultDto">
    select * from table 
    <if test="search != null">
    where column_name like '%'||#{search}||'%'
    </if>
</select>

2. 변수를 HashMap안에 넣어서 사용

<select id="getList" parameterType="Map" resultType="Dto">
    select * from table 
    <if test="search != null">
    where column_name like '%'||#{search}||'%'
    </if>
</select>

3. 정해놓은 변수명 대신 value로 바꿔서 사용

<select id="getList" parameterType="String" resultType="Dto">
    select * from table 
    <if test="value != null">
    where column_name like '%'||#{value}||'%'
    </if>
</select>

 

'mybatis' 카테고리의 다른 글

[mybatis] Oracle 부적절한 열 유형 null처리  (0) 2020.09.27
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2025/01   »
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
글 보관함