mybatis 符号处理

符号 mybatis 转义字符
" "
& &
< &lt;
> &gt;

还可以用 <![CDATA[ ]]> 表示

<!-- where age >= 18 -->
select * from t_user where age &gt;= 18;
select * from t_user where age <![CDATA[>=]]> 18;
posted @ 2023-07-28 16:22  黄光跃  阅读(9)  评论(0编辑  收藏  举报