赞
踩
jdbc:mysql://localhost:3306/db_name?serverTimezone=Asia/Shanghai&characterEncoding=utf8&useUnicode=true
配置文件中是如上写法
写在字符串里的时候,将 &
替换为&
即
String url = "jdbc:mysql://localhost:3306/db_name?serverTimezone=Asia/Shanghai&characterEncoding=utf8&useUnicode=true";
serverTimezone表示设置时区,如果默认或者UTC的话在表中插入时间可能会有8个小时的时差。这里设置为亚洲时间。
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。