```java
This application has no explicit mapping for /error, so you are seeing this as a fallback.
Sat May 30 18:13:05 CST 2020
There was an unexpected error (type=Internal Server Error, status=500).
Failed to obtain JDBC Connection; nested exception is 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.
```
翻译为:
此应用程序没有针对/错误的显式映射,因此您将此视为回退。 卫星5月30日18:13:05CST2020有一个意外的错误(类型=内部服务器错误,状态=500)。 未能获得JDBC连接;嵌套异常java.sql.SQLException:服务器时区值‘????????‘ 未识别或表示多个时区。 如果要使用时区支持,则必须配置服务器或JDBC驱动程序(通过“服务器时区”配置属性)以使用更具体的时区值。
**这是由于数据库和系统时区差异所造成的,在jdbc连接的url后面加上serverTimezone=GMT即可解决问题**