springboot无法查询到后台的数据
Posted mediocrePeople
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot无法查询到后台的数据相关的知识,希望对你有一定的参考价值。
问题:springbooot中,整合mybatis时,在IUserMapper接口中,
@Select("select * from user where name like ‘%李%‘")
List<User> findUserByName(String name);
@Select的sql语句查不到数据。
原因:mysql的url中
application.properties的配置中,
配置了spring.datasource.url=jdbc:mysql://127.0.0.1:3306/spring5
未指定编码,导致中文乱码问题,所以后台就查不到数据了。
解决方法:url中指定字符编码,配置如下:
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/spring5?useSSL=true&useUnicode=true&characterEncoding=UTF-8
以上是关于springboot无法查询到后台的数据的主要内容,如果未能解决你的问题,请参考以下文章
Elasticsearch 学习+SpringBoot实战教程
尝试运行 Spring Boot 应用程序时无法部署到 docker
Spring Boot整合ElasticSearch和Mysql 附案例源码
SpringBoot + Elasticsearch7.6实现查询及高亮分词查询,超级详细!