您现在的位置是: 首页 > 运维 mybatis中大于等于小于等于的写法
mybatis中大于等于小于等于的写法
2020-05-20 【运维】 2474人已围观 4557次浏览
简介mybatis中大于等于小于等于的写法
第一种方法:
用转义字符把">“和”<"替换掉,就没有问题了。
mapper文件示例代码:
<if test="startTime != null ">
AND order_date >= #{startTime,jdbcType=DATE}
</if>
<if test="endTime != null ">
AND order_date <= #{endTime,jdbcType=DATE}
</if>
附:XML转义字符
| < | < | 小于号 |
| > | > | 大于号 |
| & | & | 和 |
| ' | ’ | 单引号 |
| " | " | 双引号 |
第二种方法:
因为这个是xml格式的,所以不允许出现类似">"这样的字符,但是可以使用符号进行说明,将此类符号不进行解析
mapper文件示例代码:
<if test="startTime != null ">
AND <![CDATA[ order_date >= #{startTime,jdbcType=DATE} ]]>
</if>
<if test="endTime != null ">
AND <![CDATA[ order_date <= #{endTime,jdbcType=DATE} ]]>
</if>
目前显示有问题,本站也将字符转义了。后面处理
很赞哦! (0)
下一篇:解决Mac突然没声音的问题
相关文章
- 使用 OpenSSL 将 pfx 格式证书转为 pem 格式
- Linux 查看磁盘、磁盘分区、挂载磁盘、卸载磁盘操作
- ElasticSearch安装踩坑指南
- 【Docker】unauthorized: incorrect username or password
- Linux 常用命令 持续更新中...
- Linux 安装 Tengine
- CentOS 7 安装 Golang 环境
- Redis 提示 MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on disk 解决方案
- mysql 索引过长1071-max key length is 767 byte
- linux下各文件夹的结构说明及用途介绍
点击排行
- Error in execution; nested exception is io.lettuce.core.RedisCommandExecutionException: ERR DISABLE You can't write or read against a disable instance
- Debian apt 使用国内镜像
- RocketMQ 出现 sendDefaultImpl call timeout 问题
- 类 BASE64Decoder 程序包 sun.misc 找不到符号
- SpringBoot @NotBlank 不生效问题
- 记一次 Mybatis-Plus 自动填充无效问题解决
- SpringBoot 2.x 文件上传出现 The field file exceeds its maximum permitted size of 1048576 bytes
- nuxt 项目完整部署方案
站长推荐
猜你喜欢
- Linux 安装 Tengine
- SqlServer 优化技巧
- Laravel Dingo/api 出现 The version given was unknown or has no registered routes.报错
- Android SDK版本号与API级别的对照表
- Chrome 谷歌浏览器清除HTTPS证书缓存
- 获取阿里云CDN真实IP
- Python 钉钉加签 HmacSHA256 算法签名
- Vue 报错 Avoid using non-primitive value as key, use string/number value instead
- Laravel项目出现could not be opened: failed to open stream: Permission denied
- linux下各文件夹的结构说明及用途介绍