You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
WARN message in startup:
[ main] com.zaxxer.hikari.util.DriverDataSource : Registered driver with driverClassName=org.hsqldb.jdbcDriver was not found, trying direct instantiation.
Founds:
HSQLDB registered the JDBC Driver as org.hsqldb.jdbc.JDBCDriver to DriverManager now.
In org.springframework.boot.jdbc.EmbeddedDatabaseConnection, the driver class name is org.hsqldb.jdbcDriver
This maybe the mismatch cause HikariCP cannot get the driver due to below code:
while (drivers.hasMoreElements()) {
Enumeration<Driver> drivers = DriverManager.getDrivers();
Driverd = drivers.nextElement();
if (d.getClass().getName().equals(driverClassName)) { //driverClassName mismatchdriver = d;
break;
}
}