if문 사용시 Mybatis java.lang.NumberFormatException: For input string: " " 오류


<if test=" _parameter != null and _parameter != ' ' ">

"와 '를 바꿔보자


-> 이렇게

<if test=' _parameter != null and _parameter != " " '>


' '를 int로 인식하기 때문에 오류남.