Skip to content

Commit ff394bd

Browse files
committed
remove redirect and add to toc
1 parent 3fbce97 commit ff394bd

File tree

2 files changed

+6
-11
lines changed

2 files changed

+6
-11
lines changed

articles/app-service/tutorial-java-quarkus-postgresql-app.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ zone_pivot_groups: app-service-portal-azd
1212

1313
# Tutorial: Deploy a Quarkus web app to Azure App Service and PostgreSQL
1414

15-
In this tutorial, you'll deploy a data-driven [Quarkus](https://quarkus.io) web application to Azure App Service with the [Azure Database for PostgreSQL](../postgresql/index.yml)) relational database service. Azure App Service supports Java SE in a Windows or Linux server environment.
15+
In this tutorial, you deploy a data-driven [Quarkus](https://quarkus.io) web application to Azure App Service with the [Azure Database for PostgreSQL](../postgresql/index.yml)) relational database service. Azure App Service supports Java Standard Edition (Java SE) in a Windows or Linux server environment.
1616

1717
:::image type="content" source="./media/tutorial-java-quarkus-postgresql-app/azure-portal-browse-app-2.png" alt-text="Screenshot of Quarkus application storing data in PostgreSQL.":::
1818

@@ -143,7 +143,7 @@ Sign in to the [Azure portal](https://portal.azure.com/) and follow these steps
143143
:::column span="2":::
144144
**Step 2: Configure the new app**
145145
Fill out the form as follows.
146-
1. *Name*: **msdocs-quarkus-postgres**. A resource group named **msdocs-quarkus-postgres_group** will be generated for you.
146+
1. *Name*: **msdocs-quarkus-postgres**. A resource group named **msdocs-quarkus-postgres_group** is generated for you.
147147
1. *Runtime stack*: **Java 21**.
148148
1. *Java web server stack*: **Java SE (Embedded Web Server)**.
149149
1. *Operating system*: **Linux**.
@@ -175,7 +175,7 @@ Sign in to the [Azure portal](https://portal.azure.com/) and follow these steps
175175
**Step 4: Configure GitHub deployment**
176176
1. Select the **Deployment** tab.
177177
1. Select **Continuous deployment**.
178-
1. If this is your first time, select **Authorize** and authenticate with your GitHub account.
178+
1. If this is your first time configuring GitHub deployment in App Service, select **Authorize** and authenticate with your GitHub account.
179179
1. In **Organization**, select your GitHub alias.
180180
1. In **Repository**, select **msdocs-quarkus-postgresql-sample-app**.
181181
1. In **Branch**, select **starter-no-infra**.
@@ -371,8 +371,8 @@ Note the following:
371371
:::column span="2":::
372372
**Step 2 (Option 1: with GitHub Copilot):**
373373
1. Start a new chat session by selecting the **Chat** view, then selecting **+**.
374-
1. Ask, "*@workspace How does the app connect to the database?*" Copilot might give you some explanation about how the quarkus data source settings are configured in *src/main/resources/application.properties*.
375-
1. Say, "*@workspace I have created a PostgreSQL service connector in Azure App Service using the Java client type and the app setting name is AZURE_POSTGRESQL_CONNECTIONSTRING. I want to use this connection string when the app is running in production.*" Copilot might give you a code suggestion similar to the one in the **Option 2: without GitHub Copilot** steps below and even tell you to make the change in the *src/main/resources/application.properties* file.
374+
1. Ask, "*@workspace How does the app connect to the database?*" Copilot might give you some explanation about how the Quarkus data source settings are configured in *src/main/resources/application.properties*.
375+
1. Say, "*@workspace I created a PostgreSQL service connector in Azure App Service using the Java client type and the app setting name is AZURE_POSTGRESQL_CONNECTIONSTRING. I want to use this connection string when the app is running in production.*" Copilot might give you a code suggestion similar to the one in the **Option 2: without GitHub Copilot** steps below and even tell you to make the change in the *src/main/resources/application.properties* file.
376376
1. Open *src/main/resources/application.properties* in the explorer and add the code suggestion.
377377
1. Say, "@workspace How do i configure this project to create an Uber Jar?" Copilot might give you a code suggestion similar to the one in the **Option 2: without GitHub Copilot** steps below and even tell you to make the change in the *src/main/resources/application.properties* file.
378378
1. Open *src/main/resources/application.properties* in the explorer and add the code suggestion.
@@ -703,7 +703,7 @@ This Quarkus error is most likely because the app can't connect to the Azure dat
703703

704704
### The app failed to start and the log stream shows "Waiting for response to warmup request for container"
705705

706-
Your application is probably not configured to listen to the port specified by the App Service `PORT` environment variable, so it can't respond to any requests. If App Service doesn't get a response from your application, it considers the application to have failed to start. Go back to [4. Deploy sample code](#4-deploy-sample-code) and verify that *application.properties* is configured properly.
706+
Your application is probably not configured to listen to the port specified by the App Service `PORT` environment variable, so it can't respond to any requests. If App Service doesn't get a response from your application, it assumes that the application failed to start. Go back to [4. Deploy sample code](#4-deploy-sample-code) and verify that *application.properties* is configured properly.
707707

708708
### The app works, but I see the error log "ERROR [org.acm.hib.orm.pan.ent.FruitEntityResource] (vert.x-eventloop-thread-0) Failed to handle request: jakarta.ws.rs.NotFoundException: HTTP 404 Not Found".
709709

redirects/.openpublishing.redirection.app-service.json

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1980,11 +1980,6 @@
19801980
"redirect_url": "/azure/app-service/tutorial-java-spring-cosmosdb",
19811981
"redirect_document_id": false
19821982
},
1983-
{
1984-
"source_path_from_root": "/articles/app-service/tutorial-java-quarkus-postgresql-app.md",
1985-
"redirect_url": "/azure/app-service/tutorial-java-spring-cosmosdb",
1986-
"redirect_document_id": false
1987-
},
19881983
{
19891984
"source_path_from_root": "/articles/app-service/containers/tutorial-java-spring-cosmosdb.md",
19901985
"redirect_url": "/azure/app-service/tutorial-java-spring-cosmosdb",

0 commit comments

Comments
 (0)