This is the Warning im getting in console, Im confused with this warning:
Loading class `com.mysql.jdbc.Driver\'.
This is deprecated. The new driver class is
I resolved this problem by change application.properties
of
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
to
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
Hope it help
In case of using a configuration based on a YML file, the following will be the property that needs to be adjusted inside the given file:
*driverClassName: com.mysql.cj.jdbc.Driver*