java.sql.SQLException异常处理
看一下异常
The server time zone value '?й???????' is unrecognized or represents more than one
time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.
在使用mysql的jdbc驱动最新版版本(或6.0以上)时,数据库和系统时区差异引起的问题。
我一开始这样弄得,设置成了北京时间。
mysql> set time_zone='+8:00';
但后来又报错了。找了一下。这样就可以了
DriverManager.getConnection("jdbc:mysql://localhost:3306/apartment?serverTimezone=UTC&characterEncoding=utf-8"
在数据库后面加上这个就好了。
?serverTimezone=UTC&characterEncoding=utf-8"