Skip to content

Commit d32fa27

Browse files
committed
acrolinx
1 parent 36bd965 commit d32fa27

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/app-service/includes/quickstart-java/quickstart-java-javase.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ ms.date: 02/10/2024
77
ms.author: cephalin
88
---
99

10-
In this quickstart, you'll use the [Maven Plugin for Azure App Service Web Apps](https://github.com/microsoft/azure-maven-plugins/blob/develop/azure-webapp-maven-plugin/README.md) to deploy a Java web application with an embedded server to [Azure App Service](/azure/app-service/). App Service provides a highly scalable, self-patching web app hosting service. Use the tabs to switch between Tomcat, JBoss, or embedded server (Java SE) instructions.
10+
In this quickstart, you use the [Maven Plugin for Azure App Service Web Apps](https://github.com/microsoft/azure-maven-plugins/blob/develop/azure-webapp-maven-plugin/README.md) to deploy a Java web application with an embedded server to [Azure App Service](/azure/app-service/). App Service provides a highly scalable, self-patching web app hosting service. Use the tabs to switch between Tomcat, JBoss, or embedded server (Java SE) instructions.
1111

1212
The quickstart deploys either a Spring Boot app, embedded Tomcat, or Quarkus app using the [azure-webapp-maven-plugin](https://github.com/microsoft/azure-maven-plugins/wiki/Azure-Web-App) plugin.
1313

1414
> [!NOTE]
1515
> App Service can host Spring apps. For Spring apps that require all the Spring services, try [Azure Spring Apps](../../../spring-apps/quickstart.md) instead.
1616
17-
:::image type="content" source="../../media/quickstart-java/quarkus-hello-world-in-browser-azure-app-service.png" alt-text="Screenshot of Maven Hellow World web app running in Azure App Service in introduction.":::
17+
:::image type="content" source="../../media/quickstart-java/quarkus-hello-world-in-browser-azure-app-service.png" alt-text="Screenshot of Maven Hello World web app running in Azure App Service in introduction.":::
1818

1919
If Maven isn't your preferred development tool, check out our similar tutorials for Java developers:
2020
+ [Gradle](../../configure-language-java.md?pivots=platform-linux#gradle)
@@ -63,7 +63,7 @@ If Maven isn't your preferred development tool, check out our similar tutorials
6363

6464
### [Quarkus](#tab/quarkus)
6565

66-
1. Generate a new Quarkus app named `quarkus-hello-azure` with the folowing Maven command:
66+
1. Generate a new Quarkus app named `quarkus-hello-azure` with the following Maven command:
6767

6868
```azurecli-interactive
6969
mvn io.quarkus.platform:quarkus-maven-plugin:3.2.2.Final:create \
@@ -116,7 +116,7 @@ mvn com.microsoft.azure:azure-webapp-maven-plugin:2.13.0:config
116116
[INFO] ------------------------------------------------------------------------
117117
```
118118
119-
After you've confirmed your choices, the plugin adds the above plugin element and requisite settings to your project's `pom.xml` file that configure your web app to run in Azure App Service.
119+
After you confirm your choices, the plugin adds the above plugin element and requisite settings to your project's `pom.xml` file that configure your web app to run in Azure App Service.
120120

121121
The relevant portion of the `pom.xml` file should look similar to the following example.
122122

@@ -239,7 +239,7 @@ Once deployment is completed, your application is ready at `http://<appName>.azu
239239

240240
-----
241241

242-
**Congratulations!** You've deployed your first Java app to App Service.
242+
**Congratulations!** You deployed your first Java app to App Service.
243243

244244
## 5 - Clean up resources
245245

@@ -249,4 +249,4 @@ In the preceding steps, you created Azure resources in a resource group. If you
249249
az group delete --name <your resource group name; for example: quarkus-hello-azure-1690375364238-rg> --yes
250250
```
251251
252-
This command may take a minute to run.
252+
This command might take a minute to run.

0 commit comments

Comments
 (0)