It appears that the jTDS driver does not support the isValid() method specified by
JDBC 4.0. You can disable the JDBC4 isValid() check and instead use a connection
validation query.
HikariConfig config = new HikariConfig();
config.setJdbc4ConnectionTest(false);
config.setConnectionTestQuery("SELECT 1");
I do prefer the jTDS driver over Microsoft's.