我是从 Spring Boot 应用程序连接 Azure MySQL 数据库的新手。
以下是中提到的片段application.properties
spring.datasource.url=jdbc:mysql://XXXX.mysql.database.azure.com:3306/MyDbName
spring.datasource.username= ******
spring.datasource.password= ******
我遇到了以下异常
org.springframework.jdbc.support.MetaDataAccessException: Could not get Connection for extracting meta data; nested exception is org.springframework.jdbc.CannotGetJdbcConnectionException: Could not get JDBC Connection; nested exception is java.sql.SQLException: Unknown system variable 'query_cache_size'
我用谷歌搜索过,有人提到需要将MySQLConnector的版本更新为8.0.13
请帮我找到解决方案。