< Previous Challenge - Home - Next Challenge >
So far we've been running the Spring Boot app locally, now it's time to run it on Azure.
Create a Web App running on an App Service instance and deploy the app. Choose a tier that allows autoscaling (will be introduced later).
- Verify the application is working by creating a new owner, a new pet and a new visit through the new webapp
- Connect to the database through a
mysql
client - Verify that the tables include the newly created entities (owner/pet/visit)
- No files should be modified for this challenge
It's possible to deploy a jar file to App Service through Maven, but that would require you to change the pom file. An alternative is the ZIP deployment.