springboot项目前端页面中文搜索时,数据库查询为空(mysql)

Posted 知识追求者

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot项目前端页面中文搜索时,数据库查询为空(mysql)相关的知识,希望对你有一定的参考价值。

在application配置文件中数据库的url最后加上 ?characterEncoding=utf8 即可解决

#配置数据库
spring: 
  datasource: 
    driver-class-name: com.mysql.jdbc.Driver
    url: jdbc:mysql://localhost:3306/jeff?characterEncoding=utf8
    username: root
    password: mysql

以上是关于springboot项目前端页面中文搜索时,数据库查询为空(mysql)的主要内容,如果未能解决你的问题,请参考以下文章