Jdbc.url配置可解决写进数据库的时间相差8个小时

之前的JDBCurl如下:
jdbc.url=jdbc:mysql://localhost:3306/myworld?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=GMT

serverTimezone设置为GMT+8就行了,但是用%2b代替+,所以最终应该写为·:

jdbc.url=jdbc:mysql://localhost:3306/myworld?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=GMT%2b8

你可能感兴趣的:(java)