| title | Quickstart - Build and Deploy Apps to Azure Spring Apps |
|---|---|
| description | Describes app deployment to Azure Spring Apps. |
| author | KarlErickson |
| ms.author | karler |
| ms.service | azure-spring-apps |
| ms.topic | quickstart |
| ms.date | 08/19/2025 |
| ms.update-cycle | 1095-days |
| ms.custom | devx-track-java, devx-track-extended-java, devx-track-azurecli, mode-other |
| zone_pivot_groups | programming-languages-spring-apps |
[!INCLUDE deprecation-note]
This article applies to: ✅ Basic/Standard ❎ Enterprise
::: zone pivot="programming-language-csharp"
This quickstart explains how to build and deploy Spring applications to Azure Spring Apps using the Azure CLI.
- Completion of the previous quickstarts in this series:
Use the following steps to download the sample app. If you've been using the Azure Cloud Shell, switch to a local command prompt.
-
Create a new folder and clone the sample app repository.
mkdir source-codecd source-codegit clone https://github.com/Azure-Samples/azure-spring-apps-samples -
Navigate to the repository directory.
cd azure-spring-apps-samples
Use the following steps to deploy the PlanetWeatherProvider project.
-
Create an app for the
PlanetWeatherProviderproject in your Azure Spring Apps instance.az spring app create --name planet-weather-provider --runtime-version NetCore_31To enable automatic service registration, you've given the app the same name as the value of
spring.application.namein the project's appsettings.json file:"spring": { "application": { "name": "planet-weather-provider" } }
This command may take several minutes to run.
-
Change directory to the PlanetWeatherProvider project folder.
cd steeltoe-sample/src/planet-weather-provider -
Create the binaries and the .zip file to be deployed.
dotnet publish -c release -o ./publish[!TIP] The project file contains the following XML to package the binaries in a .zip file after writing them to the ./publish folder:
<Target Name="Publish-Zip" AfterTargets="Publish"> <ZipDirectory SourceDirectory="$(PublishDir)" DestinationFile="$(MSBuildProjectDirectory)/publish-deploy-planet.zip" Overwrite="true" /> </Target>
-
Deploy the project to Azure.
Make sure that the command prompt is in the project folder before running the following command.
az spring app deploy \ --name planet-weather-provider \ --runtime-version NetCore_31 \ --main-entry Microsoft.Azure.SpringCloud.Sample.PlanetWeatherProvider.dll \ --artifact-path ./publish-deploy-planet.zipThe
--main-entryoption specifies the relative path from the .zip file's root folder to the .dll file that contains the application's entry point. After the service uploads the .zip file, it extracts all the files and folders, and then tries to execute the entry point in the specified .dll file.This command may take several minutes to run.
Use the following steps to deploy the SolarSystemWeather project.
-
Create another app in your Azure Spring Apps instance for the project.
az spring app create --name solar-system-weather --runtime-version NetCore_31solar-system-weatheris the name that is specified in theSolarSystemWeatherproject's appsettings.json file.This command may take several minutes to run.
-
Change directory to the
SolarSystemWeatherproject.cd ../solar-system-weather -
Create the binaries and .zip file to be deployed.
dotnet publish -c release -o ./publish -
Deploy the project to Azure.
az spring app deploy \ --name solar-system-weather \ --runtime-version NetCore_31 \ --main-entry Microsoft.Azure.SpringCloud.Sample.SolarSystemWeather.dll \ --artifact-path ./publish-deploy-solar.zipThis command may take several minutes to run.
Before testing the application, get a public endpoint for an HTTP GET request to the solar-system-weather application.
-
Run the following command to assign the endpoint.
az spring app update --name solar-system-weather --assign-endpoint true -
Run the following command to get the URL of the endpoint.
Windows:
az spring app show --name solar-system-weather --output tableLinux:
az spring app show --name solar-system-weather | grep url
To test the application, send a GET request to the solar-system-weather app. In a browser, navigate to the public URL with /weatherforecast appended to it. For example: https://servicename-solar-system-weather.azuremicroservices.io/weatherforecast
The output is JSON:
[{"Key":"Mercury","Value":"very warm"},{"Key":"Venus","Value":"quite unpleasant"},{"Key":"Mars","Value":"very cool"},{"Key":"Saturn","Value":"a little bit sandy"}]This response shows that both Spring apps are working. The SolarSystemWeather app returns data that it retrieved from the PlanetWeatherProvider app.
::: zone-end
::: zone pivot="programming-language-java"
This article explains how to build and deploy Spring applications to Azure Spring Apps. You can use Azure CLI, the Maven plugin, or IntelliJ. This article describes each alternative.
- Completion of the previous quickstarts in this series:
- JDK 17
- Maven 3.0 or above
- An Azure subscription. If you don't have a subscription, create a free account before you begin.
- Optionally, Azure CLI version 2.45.0 or higher. Install the Azure Spring Apps extension with the following command:
az extension add --name spring - Optionally, the Azure Toolkit for IntelliJ.
Use the following commands to clone the sample repository, navigate to the sample folder, and then build the project.
git clone https://github.com/azure-samples/spring-petclinic-microservices
cd spring-petclinic-microservices
mvn clean package -DskipTests -Denv=cloudCompiling the project takes 5-10 minutes. When the project is compiled, you should have individual JAR files for each service in their respective folders.
Use the following steps to create and deploys apps on Azure Spring Apps using the CLI.
-
If you didn't run the following commands in the previous quickstarts, run them now to set the CLI defaults.
az configure --defaults group=<resource-group-name> spring=<service-name> -
Create the two core Spring applications for PetClinic:
api-gatewayandcustomers-service.az spring app create \ --name api-gateway \ --runtime-version Java_17 \ --instance-count 1 \ --memory 2Gi \ --assign-endpoint az spring app create \ --name customers-service \ --runtime-version Java_17 \ --instance-count 1 \ --memory 2Gi -
Deploy the JAR files built in the previous step.
az spring app deploy \ --name api-gateway \ --artifact-path spring-petclinic-api-gateway/target/api-gateway-3.0.1.jar \ --jvm-options="-Xms2048m -Xmx2048m" az spring app deploy \ --name customers-service \ --artifact-path spring-petclinic-customers-service/target/customers-service-3.0.1.jar \ --jvm-options="-Xms2048m -Xmx2048m" -
Query the app status after deployments with the following command.
az spring app list --output tableThis command produces output similar to the following example:
Name Location ResourceGroup Production Deployment Public Url Provisioning Status CPU Memory Running Instance Registered Instance Persistent Storage ----------------- ---------- --------------- ----------------------- --------------------------------------------------- --------------------- ----- -------- ------------------ --------------------- -------------------- api-gateway eastus xxxxxx-sp default https://<service name>-api-gateway.azuremicroservices.io Succeeded 1 2 1/1 1/1 - customers-service eastus <service name> default Succeeded 1 2 1/1 1/1 -
Access api-gateway and customers-service from a browser with the Public Url shown previously, in the format of https://<service name>-api-gateway.azuremicroservices.io.
:::image type="content" source="media/quickstart-deploy-apps/access-customers-service.png" alt-text="Screenshot of the PetClinic sample app that shows the Owners page." lightbox="media/quickstart-deploy-apps/access-customers-service.png":::
Tip
To troubleshot deployments, you can use the following command to get logs streaming in real time whenever the app is running az spring app logs --name <app name> --follow.
To get the PetClinic app functioning with all features like Admin Server, Visits, and Veterinarians, deploy the other apps with following commands:
az spring app create \
--name admin-server \
--runtime-version Java_17 \
--instance-count 1 \
--memory 2Gi \
--assign-endpoint
az spring app create \
--name vets-service \
--runtime-version Java_17 \
--instance-count 1 \
--memory 2Gi
az spring app create \
--name visits-service \
--runtime-version Java_17 \
--instance-count 1 \
--memory 2Gi
az spring app deploy \
--name admin-server \
--runtime-version Java_17 \
--artifact-path spring-petclinic-admin-server/target/admin-server-3.0.1.jar \
--jvm-options="-Xms1536m -Xmx1536m"
az spring app deploy \
--name vets-service \
--runtime-version Java_17 \
--artifact-path spring-petclinic-vets-service/target/vets-service-3.0.1.jar \
--jvm-options="-Xms1536m -Xmx1536m"
az spring app deploy \
--name visits-service \
--runtime-version Java_17 \
--artifact-path spring-petclinic-visits-service/target/visits-service-3.0.1.jar \
--jvm-options="-Xms1536m -Xmx1536m"
Use the following commands to clone the sample repository, navigate to the sample folder, and then build the project.
git clone https://github.com/azure-samples/spring-petclinic-microservices
cd spring-petclinic-microservices
mvn clean package -DskipTests -Denv=cloudCompiling the project takes 5-10 minutes. When the project is compiled, you should have individual JAR files for each service in their respective folders.
The following steps show you how to generate configurations and deploy to Azure Spring Apps:
-
Go to the spring-petclinic-customers-service folder. Generate configurations by running the following command. If you've already signed-in with Azure CLI, the command automatically picks up the credentials. Otherwise, it signs you in using a prompt with instructions. For more information, see Authentication on the azure-maven-plugins wiki.
mvn com.microsoft.azure:azure-spring-apps-maven-plugin:1.19.0:config -DappName=customers-service
You're asked to provide the following values:
- Subscription: The subscription you used to create an Azure Spring Apps instance.
- Service Instance: The name of your Azure Spring Apps instance.
- Public endpoint: Whether to assign a public endpoint to the app. Select No.
-
Verify that the
appNameelements in the POM files are correct:<build> <plugins> <plugin> <groupId>com.microsoft.azure</groupId> <artifactId>azure-spring-apps-maven-plugin</artifactId> <version>1.19.0</version> <configuration> <subscriptionId>xxxxxxxxx-xxxx-xxxx-xxxxxxxxxxxx</subscriptionId> <clusterName>v-spr-cld</clusterName> <appName>customers-service</appName>
The POM now contains the plugin dependencies and configurations.
-
Deploy the apps by using the following command:
mvn azure-spring-apps:deploy
-
Go to the spring-petclinic-api-gateway folder. Run the following commands to generate the configuration and deploy
api-gateway. Select yes for Public endpoint.mvn com.microsoft.azure:azure-spring-apps-maven-plugin:1.19.0:config -DappName=api-gateway mvn azure-spring-apps:deploy
A successful deployment command returns a URL in the form: https://<service name>-spring-petclinic-api-gateway.azuremicroservices.io. Use it to navigate to the running service.
:::image type="content" source="media/quickstart-deploy-apps/access-customers-service.png" alt-text="Screenshot of the PetClinic sample app that shows the Owners page." lightbox="media/quickstart-deploy-apps/access-customers-service.png":::
You can also navigate the Azure portal to find the URL.
- Navigate to the service.
- Select Apps.
- Select api-gateway.
- Find the URL on the api-gateway | Overview page.
To get the PetClinic app functioning with all sections like Admin Server, Visits, and Veterinarians, you can deploy the other Spring applications. Rerun the configuration command and select the following applications.
- admin-server
- vets-service
- visits-service
Correct the app names in each pom.xml file for these modules, and then run the deploy command again.
Use the following steps to import the sample project in IntelliJ.
-
Download and unzip the source repository for this tutorial, or clone it using Git:
git clone https://github.com/azure-samples/spring-petclinic-microservices -
Open the IntelliJ Welcome dialog and select Import Project to open the import wizard.
-
Select the spring-petclinic-microservices folder.
:::image type="content" source="media/quickstart-deploy-apps/import-project-1-pet-clinic.png" alt-text="Screenshot of the IntelliJ import wizard that shows the PetClinic sample project." lightbox="media/quickstart-deploy-apps/import-project-1-pet-clinic.png":::
To deploy to Azure, you must sign in with your Azure account with Azure Toolkit for IntelliJ and choose your subscription. For sign-in details, see Create a Hello World web app for Azure App Service using IntelliJ.
-
Right-click your project in IntelliJ project explorer, and select Azure -> Deploy to Azure Spring Apps.
:::image type="content" source="media/quickstart-deploy-apps/deploy-to-azure-1-pet-clinic.png" alt-text="Screenshot of the IntelliJ project explorer that shows the Deploy to Azure Spring Apps menu option." lightbox="media/quickstart-deploy-apps/deploy-to-azure-1-pet-clinic.png":::
-
In the Name field, append :api-gateway to the existing Name.
-
In the Artifact textbox, select spring-petclinic-api-gateway-3.0.1.
-
In the Subscription textbox, verify your subscription.
-
In the Spring Apps textbox, select the instance of Azure Spring Apps that you created in Provision Azure Spring Apps instance.
-
In the App: textbox, select Create app....
-
Enter api-gateway, then select OK.
-
Set Public Endpoint to Enable.
-
Set Memory to 2.0Gi and JVM options to -Xms2048m -Xmx2048m.
:::image type="content" source="media/quickstart-deploy-apps/memory-jvm-options.png" alt-text="Screenshot of the IntelliJ Create Azure Spring App dialog box that shows Memory and JVM options controls." lightbox="media/quickstart-deploy-apps/memory-jvm-options.png":::
-
In the Before launch section of the dialog, double-click Run Maven Goal.
-
In the Working directory textbox, navigate to the spring-petclinic-microservices/spring-petclinic-api-gateway folder.
-
In the Command line textbox, enter package -DskipTests. Select OK.
:::image type="content" source="media/quickstart-deploy-apps/deploy-to-azure-spring-apps-2-pet-clinic.png" alt-text="Screenshot of the IntelliJ Deploy to Azure dialog box with the Select Maven Goal section highlighted." lightbox="media/quickstart-deploy-apps/deploy-to-azure-spring-apps-2-pet-clinic.png":::
-
Start the deployment by selecting the Run button at the bottom of the Deploy Azure Spring Apps app dialog. The plug-in runs the command
mvn packageon theapi-gatewayapp and deploys the JAR file generated by thepackagecommand.
Repeat the previous steps to deploy customers-service and other Pet Clinic apps to Azure Spring Apps:
- Modify the Name and Artifact to identify the
customers-serviceapp. - In the App: textbox, select Create app... to create
customers-serviceapp. - Verify that the Public Endpoint option is set to Disabled.
- In the Before launch section of the dialog, switch the Working directory to the petclinic/customers-service folder.
- Start the deployment by selecting the Run button at the bottom of the Deploy Azure Spring Apps app dialog.
Navigate to the URL of the form: https://<service name>-spring-petclinic-api-gateway.azuremicroservices.io
:::image type="content" source="media/quickstart-deploy-apps/access-customers-service.png" alt-text="Screenshot of the PetClinic sample app that shows the Owners page." lightbox="media/quickstart-deploy-apps/access-customers-service.png":::
You can also navigate the Azure portal to find the URL.
- Navigate to the service
- Select Apps
- Select api-gateway
- Find the URL on the api-gateway | Overview page
Other Spring applications included in this sample can be deployed similarly.
- admin-server
- vets-service
- visits-service
::: zone-end
If you plan to continue working with subsequent quickstarts and tutorials, you might want to leave these resources in place. When no longer needed, delete the resource group, which deletes the resources in the resource group. To delete the resource group by using Azure CLI, use the following commands:
echo "Enter the Resource Group name:" &&
read resourceGroupName &&
az group delete --name $resourceGroupName &&
echo "Press [ENTER] to continue ..."
[!div class="nextstepaction"] Quickstart: Set up a Log Analytics workspace