spring jpa 保存中文到mysql数据库乱码问题总结
1、首先新建数据库,字符集一定要设置为:utf8,否则乱码
2、Spring Jpa配置mysql内容,需要设置编码格式,否则乱码
spring:datasource:driver-class-name: com.mysql.cj.jdbc.Driverurl: jdbc:mysql://127.0.0.1:3306/Stock?useUnicode=true&characterEncoding=utf-8&useSSL=true&serverTimezone=UTCusername: rootpassword: rootjpa:hibernate:ddl-auto: updateshow-sql: true
设置时区
//serverTimezone=UTC 写这句会导致时间迟一天
serverTimezone=Asia/Shanghai//这是上海时间
设置编码格式
characterEncoding=utf-8