본문 바로가기
[프로그래밍]/BackEnd

마이바티스 대소문자 구분에러

by control+c 2015. 11. 18.
반응형

이클립스툴에 뜨는 에러 메시지

The content of element type "select" must match "(include|trim|where|set|foreach|choose|if|bind)".


콘솔 로그

Caused by: org.apache.ibatis.builder.BuilderException: Error creating document instance.  Cause: org.xml.sax.SAXParseException; lineNumber: 36; columnNumber: 63; 요소 유형 "IF"을(를) 선언해야 합니다.



<IF test = 'use_yn != null'>

AND idx = '1' 

</IF> 


* IF 대문자를 소문자 if로 변경


<if test = 'use_yn != null'>

AND idx = '1' 

</if> 


반응형

댓글