springboot使用jdbc连接mysql数据库时区问题

连接数据库时配置时区信息

serverTimezone=GMT%2b8
#数据库连接信息配置
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/test?useUnicode=true&characterEncoding=UTF-8&serverTimezone=GMT%2b8&useSSL=false
#用户名
spring.datasource.username=root
#密码
spring.datasource.password=123456
#驱动
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver

猜你喜欢

转载自blog.csdn.net/qq_29752857/article/details/106304851