Skip to content

Commit 9d51601

Browse files
authored
Merge pull request #190460 from Vaseem-raza/VM-030322-Create-Java-App-on-Azure-1906168_3
VM-030322-Create-Java-App-on-Azure-1906168_3
2 parents cdafc26 + 450903a commit 9d51601

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

articles/app-service/quickstart-java.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ author: jasonfreeberg
66
ms.assetid: 582bb3c2-164b-42f5-b081-95bfcb7a502a
77
ms.devlang: java
88
ms.topic: quickstart
9-
ms.date: 12/10/2021
9+
ms.date: 03/03/2022
1010
ms.author: jafreebe
11-
ms.custom: mvc, seo-java-july2019, seo-java-august2019, seo-java-september2019, mode-other
11+
ms.custom: mvc, seo-java-july2019, seo-java-august2019, seo-java-september2019, mode-other, devdivchpfy22
1212
zone_pivot_groups: app-service-platform-windows-linux
1313
adobe-target: true
1414
adobe-target-activity: DocsExp–386541–A/B–Enhanced-Readability-Quickstarts–2.19.2021
@@ -18,7 +18,7 @@ adobe-target-content: ./quickstart-java-uiex
1818

1919
# Quickstart: Create a Java app on Azure App Service
2020

21-
[Azure App Service](overview.md) provides a highly scalable, self-patching web hosting service. This quickstart shows how to use the [Azure CLI](/cli/azure/get-started-with-azure-cli) with the [Azure Web App Plugin for Maven](https://github.com/Microsoft/azure-maven-plugins/tree/develop/azure-webapp-maven-plugin) to deploy a .jar file, or .war file. Use the tabs to switch between Java SE and Tomcat instructions.
21+
[Azure App Service](overview.md) provides a highly scalable, self-patching web hosting service. This quickstart shows how to use the [Azure CLI](/cli/azure/get-started-with-azure-cli) with the [Azure Web App Plugin for Maven](https://github.com/Microsoft/azure-maven-plugins/tree/develop/azure-webapp-maven-plugin) to deploy a .jar file, or .war file. Use the tabs to switch between Java SE and Tomcat instructions.
2222

2323
# [Java SE](#tab/javase)
2424

@@ -110,7 +110,7 @@ cd agoncal-application-petstore-ee7
110110

111111
## Configure the Maven plugin
112112

113-
The deployment process to Azure App Service will use your Azure credentials from the Azure CLI automatically. If the Azure CLI is not installed locally, then the Maven plugin will authenticate with Oauth or device login. For more information, see [authentication with Maven plugins](https://github.com/microsoft/azure-maven-plugins/wiki/Authentication).
113+
The deployment process to Azure App Service will use your Azure credentials from the Azure CLI automatically. If the Azure CLI isn't installed locally, then the Maven plugin will authenticate with Oauth or device sign in. For more information, see [authentication with Maven plugins](https://github.com/microsoft/azure-maven-plugins/wiki/Authentication).
114114

115115
Run the Maven command below to configure the deployment. This command will help you to set up the App Service operating system, Java version, and Tomcat version.
116116

@@ -288,7 +288,7 @@ JBoss EAP is only available on the Linux version of App Service. Select the **Li
288288
289289
::: zone-end
290290
291-
You can modify the configurations for App Service directly in your `pom.xml` if needed. Some common ones are listed below:
291+
You can modify the configurations for App Service directly in your `pom.xml`. Some common configurations are listed below:
292292
293293
Property | Required | Description | Version
294294
---|---|---|---
@@ -297,11 +297,11 @@ Property | Required | Description | Version
297297
`<resourceGroup>` | true | Azure Resource Group for your Web App. | 0.1.0+
298298
`<appName>` | true | The name of your Web App. | 0.1.0+
299299
`<region>` | false | Specifies the region where your Web App will be hosted; the default value is **centralus**. All valid regions at [Supported Regions](https://azure.microsoft.com/global-infrastructure/services/?products=app-service) section. | 0.1.0+
300-
`<pricingTier>` | false | The pricing tier for your Web App. The default value is **P1v2** for production workload, while **B2** is the recommended minimum for Java dev/test. [Learn more](https://azure.microsoft.com/pricing/details/app-service/linux/)| 0.1.0+
301-
`<runtime>` | false | The runtime environment configuration, you could see the detail [here](https://github.com/microsoft/azure-maven-plugins/wiki/Azure-Web-App:-Configuration-Details). | 0.1.0+
302-
`<deployment>` | false | The deployment configuration, you could see the details [here](https://github.com/microsoft/azure-maven-plugins/wiki/Azure-Web-App:-Configuration-Details). | 0.1.0+
300+
`<pricingTier>` | false | The pricing tier for your Web App. The default value is **P1v2** for production workload, while **B2** is the recommended minimum for Java dev/test. For more information, see [App Service Pricing](https://azure.microsoft.com/pricing/details/app-service/linux/)| 0.1.0+
301+
`<runtime>` | false | The runtime environment configuration. For more information, see [Configuration Details](https://github.com/microsoft/azure-maven-plugins/wiki/Azure-Web-App:-Configuration-Details). | 0.1.0+
302+
`<deployment>` | false | The deployment configuration. For more information, see [Configuration Details](https://github.com/microsoft/azure-maven-plugins/wiki/Azure-Web-App:-Configuration-Details). | 0.1.0+
303303
304-
Be careful about the values of `<appName>` and `<resourceGroup>` (`helloworld-1590394316693` and `helloworld-1590394316693-rg` accordingly in the demo), they will be used later.
304+
Be careful about the values of `<appName>` and `<resourceGroup>` (`helloworld-1590394316693` and `helloworld-1590394316693-rg` accordingly in the demo), they'll be used later.
305305
306306
> [!div class="nextstepaction"]
307307
> [I ran into an issue](https://www.research.net/r/javae2e?tutorial=quickstart-java&step=config)
@@ -336,7 +336,7 @@ mvn package azure-webapp:deploy -DskipTests
336336

337337
-----
338338

339-
Once deployment has completed, your application will be ready at `http://<appName>.azurewebsites.net/` (`http://helloworld-1590394316693.azurewebsites.net` in the demo). Open the url with your local web browser, you should see
339+
Once deployment is completed, your application will be ready at `http://<appName>.azurewebsites.net/` (`http://helloworld-1590394316693.azurewebsites.net` in the demo). Open the url with your local web browser, you should see
340340

341341
# [Java SE](#tab/javase)
342342

@@ -369,7 +369,7 @@ JBoss EAP is only available on the Linux version of App Service. Select the **Li
369369
370370
## Clean up resources
371371

372-
In the preceding steps, you created Azure resources in a resource group. If you don't expect to need these resources in the future, delete the resource group from portal, or by running the following command in the Cloud Shell:
372+
In the preceding steps, you created Azure resources in a resource group. If you don't need the resources in the future, delete the resource group from portal, or by running the following command in the Cloud Shell:
373373

374374
```azurecli-interactive
375375
az group delete --name <your resource group name; for example: helloworld-1558400876966-rg> --yes

0 commit comments

Comments
 (0)