web developer๐Ÿ‘ฉ๐Ÿป‍๐Ÿ’ป

[Mybatis] The content of elements must consist of well-formed character data or markup (<![CDATA ]]> , &lt;) ์‚ฌ์šฉํ•˜๊ธฐ ๋ณธ๋ฌธ

DB

[Mybatis] The content of elements must consist of well-formed character data or markup (<![CDATA ]]> , &lt;) ์‚ฌ์šฉํ•˜๊ธฐ

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. &lt; ์‚ฌ์šฉ 

<select id="selectA" resultMap="MemberResultMap">
  select *
  from A
  where  year &lt; 2020
</select>
&gt;
< &lt;
>= &gt;=
<= &lt;=

 

 

 

 

 

์ฐธ๊ณ  :

 

[Mybatis] ๋น„๊ต์—ฐ์‚ฐ์ž ๋ถ€๋“ฑํ˜ธ >,< ์•ˆ๋ ๋•Œ

์ฟผ๋ฆฌ๋ฅผ ์ž‘์„ฑํ•˜๋‹ค ๋ณด๋ฉด ๋ถ€๋“ฑํ˜ธ (>,<) ๋ฅผ ์‚ฌ์šฉํ•ด์•ผ ํ•  ๋•Œ๊ฐ€ ์žˆ๋‹ค. ๊ทธ๋Ÿฌ๋‚˜ mybatis์—์„œ ์‚ฌ์šฉํ•˜๋ฉด ์—๋Ÿฌ๊ฐ€ ๋‚˜๋Š”๋ฐ ์ด๋•Œ ํ•ด๊ฒฐ๋ฐฉ๋ฒ•์„ ์•Œ์•„ ๋ณด์ž. ์ฟผ๋ฆฌ์— ๋ถ€๋“ฑํ˜ธ ๊ธฐํ˜ธ๋ฅผ ์‚ฌ์šฉํ•˜๋ฉด The content of elements must consist

yamea-guide.tistory.com