Estou usando o banco MySQL, e como vi que o Spring automaticamente injeta um Driver para ele, não foi necessário inseri-lo no application.properties. Porém, recebi esse erro ao adicionar a dependência de cache no pom.xml:
Description:
Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured.
Reason: Failed to determine a suitable driver class
Action:
Consider the following:
If you want an embedded database (H2, HSQL or Derby), please put it on the classpath.
If you have database settings to be loaded from a particular profile you may need to activate it (no profiles are currently active).
Então setei o Driver do MySQL manualmente e funcionou (porém com aquele log chato de que isso é deprecated):
Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'. The driver is automatically registered via the SPI and manual loading of the driver class is generally unnecessary.
Alguém pode me explicar por que ele precisa do Driver manualmente configurado?