My application uses mysql-connector-java-5.1.48 and I'm trying to migrate to mysql-connector-java-8.0.15. The application currently uses NonRegisteringDriver.parseURL to parse the jdbc url and return the Properties extracted from the URL as follows:
  NonRegisteringDriver driver = new NonRegisteringDriver();
  Properties properties = driver.parseURL(connectUrl, null);
How can I do something similar using the 8.0.x connector version since it no longer has the parseURL API?
