This sample demonstrates how to use Cloud SQL on Google Managed VMs
Before you can run or deploy the sample, you will need to do the following:
- Create a Cloud SQL instance. You can do this from the Google Developers Console or via the Cloud SDK. To create it via the SDK use the following command:
$ gcloud sql instances create [your-instance-name]
--assign-ip
--authorized-networks 0.0.0.0/0
--tier D0 - Create a new user and database for the application. The easiest way to do this is via the Google Developers Console. Alternatively, you can use MySQL tools such as the command line client or workbench.
- Update the connection string in
appengine-web.xmlwith your local MySQL instance values. $ mvn clean jetty:run
- Update the connection string in
appengine-web.xmlwith your Cloud SQL instance values. $ mvn clean gcloud:deploy