알쓸전컴(알아두면 쓸모있는 전자 컴퓨터)
MyBbatis Query에 부등호(<) 사용시 발생하는 Error 본문
XML에서는 < 부등호를 TAG로 인식하기 때문에 "The content of elements must consist of well-formed character data or markup."라는 에러가 발생하게 된다. 이와 같은 문제를 해결하기 위해서는 Query안에 사용되고 있는 부등호가 문자열이라것을 의미하게 <![CDATA[ 내용 ]]> "으로 감싸준다.
<
select
id
=
"testQuery1"
resulttype
=
"java.util.HashMap"
>
<!--[CDATA[
SELECT user_name, user_type
FROM tb_user_list
WHERE user_age < 25
]]-->
</
select
>
'Web > Spring Framework tip' 카테고리의 다른 글
spring -> tomcat 원격 배포 deploy (0) | 2018.10.23 |
---|---|
spring oracle db + mybatis +log4jdbc 연결 (2) | 2018.04.07 |
spring 3.0 자동 bean 생성 (0) | 2018.04.05 |
axios(post) -> spring framework json 객체 변환 (0) | 2018.03.03 |
drag and drop 파일 업로더 서버 파트 (vue-simple-uploader) (0) | 2018.03.03 |
Comments