解决mybatis-plus中模糊查询中文搜索不到
Posted 疯狂小公举
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决mybatis-plus中模糊查询中文搜索不到相关的知识,希望对你有一定的参考价值。
需要在springboot配置文件application.properties加上useUnicode=true&characterEncoding=utf-8&rewriteBatchedStatements=true
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/testdb?useUnicode=true&characterEncoding=utf-8&rewriteBatchedStatements=true
以上是关于解决mybatis-plus中模糊查询中文搜索不到的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot Mybatis-Plus 分页模糊查询 分页参数和响应封装
Mybatis-Plus:条件构造器(allEq基本比较操作模糊查询排序逻辑查询select)