一般获取数据库中的时间时,如果数据库中的时间值没有错误的话,但是后台拿到的数据库跟数据库中的不一样的话一般就是时区问题 ,这种现象一般在连接数据库的url中设置东八区时区就可以了
spring.datasource.url=jdbc:mysql://localhost:3306/students?serverTimezone=UTC&useUnicode=true&characterEncoding=utf-8&serverTimezone=GMT%2b8
一般获取数据库中的时间时,如果数据库中的时间值没有错误的话,但是后台拿到的数据库跟数据库中的不一样的话一般就是时区问题 ,这种现象一般在连接数据库的url中设置东八区时区就可以了
spring.datasource.url=jdbc:mysql://localhost:3306/students?serverTimezone=UTC&useUnicode=true&characterEncoding=utf-8&serverTimezone=GMT%2b8