DB
[Mybatis] The content of elements must consist of well-formed character data or markup (<![CDATA ]]> , <) ์ฌ์ฉํ๊ธฐ
natrue
2021. 7. 9. 15:27
728x90
mybatis์์ ๋น๊ต ์ฐ์ฐ์ ์ฌ์ฉํ๋ ์ค์ ํน์๋ฌธ์ ์๋ฌ ๋ฐ์
<select id="selectA" resultMap="MemberResultMap">
select *
from A
where year < 2020
</select>
error : The content of elements must consist of well-formed character data or markup.
ํด๊ฒฐ๋ฐฉ๋ฒ
1. <![CDATA ]]> ์ฌ์ฉ
<select id="selectA" resultMap="MemberResultMap">
select *
from A
where year <![CDATA < ]]> 2020
</select>
2. < ์ฌ์ฉ
<select id="selectA" resultMap="MemberResultMap">
select *
from A
where year < 2020
</select>
> | > |
< | < |
>= | >= |
<= | <= |
์ฐธ๊ณ :
[Mybatis] ๋น๊ต์ฐ์ฐ์ ๋ถ๋ฑํธ >,< ์๋ ๋
์ฟผ๋ฆฌ๋ฅผ ์์ฑํ๋ค ๋ณด๋ฉด ๋ถ๋ฑํธ (>,<) ๋ฅผ ์ฌ์ฉํด์ผ ํ ๋๊ฐ ์๋ค. ๊ทธ๋ฌ๋ mybatis์์ ์ฌ์ฉํ๋ฉด ์๋ฌ๊ฐ ๋๋๋ฐ ์ด๋ ํด๊ฒฐ๋ฐฉ๋ฒ์ ์์ ๋ณด์. ์ฟผ๋ฆฌ์ ๋ถ๋ฑํธ ๊ธฐํธ๋ฅผ ์ฌ์ฉํ๋ฉด The content of elements must consist
yamea-guide.tistory.com