I am deploying my project on Google app engine and this project also has a SQL instance.
However, when I try to run the code I get ClassNotFoundException when I try to load the class like
Class.forName("com.mysql.jdbc.GoogleDriver");
I followed all the documentation given here https://cloud.google.com/appengine/docs/standard/java/cloud-sql/
and also looked at this solution
ClassNotFoundException: com.mysql.jdbc.GoogleDriver
my appengine-web.xml has the entry -
<use-google-connector-j>true</use-google-connector-j>
Any idea where I could be going wrong?