공부/Java
Mybatis / java.lang.NumberFormatException: For input string: " "
Qdy
2018. 2. 12. 16:23
if문 사용시 Mybatis java.lang.NumberFormatException: For input string: " " 오류
<if test=" _parameter != null and _parameter != ' ' ">
"와 '를 바꿔보자
-> 이렇게
<if test=' _parameter != null and _parameter != " " '>
' '를 int로 인식하기 때문에 오류남.