问题:2024-06-03 13:31:25.128 ERROR 12340 --- [ main] com.zaxxer.hikari.pool.HikariPool : mysql - Exception during pool initialization. com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
解决方案:1.有可能是mysql使用8.0版本,但驱动仍使用老版本,将application中:spring.datasource.dynamic.datasource.mysql.driver-class-name=com.mysql.cj.jdbc.Driver
2.检查主机名,用户名,密码是否错误
依旧报错: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 conf
解决方案:这是时区问题,spring.datasource.dynamic.datasource.mysql.url=jdbc:mysql://localhost:3306/user_profile_manager1214?characterEncoding=utf-8&useSSL=false&serverTimezone=UTC
最终运行成功。