背景
Spring Boot使用JPA,当前端传入到后端的数据为中文的时候,入库变为???
解决方法
修改下项目的配置文件中DB的配置,新增characterEncoding=utf-8即可
spring.datasource.url=jdbc:mysql://localhost:3306/testDemo?autoReconnect=true&useSSL=false&characterEncoding=utf-8
Spring Boot使用JPA,当前端传入到后端的数据为中文的时候,入库变为???
修改下项目的配置文件中DB的配置,新增characterEncoding=utf-8即可
spring.datasource.url=jdbc:mysql://localhost:3306/testDemo?autoReconnect=true&useSSL=false&characterEncoding=utf-8