Skip to content

Commit f374291

Browse files
(AzureCXP) Fixes MicrosoftDocs/azure-docs#51918
Corrected properties to include connection-string instead of name. Corrected localhost URL as well.
1 parent 817b267 commit f374291

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/azure-app-configuration/quickstart-feature-flag-spring-boot.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ Use the [Spring Initializr](https://start.spring.io/) to create a new Spring Boo
100100
1. Navigate to the `resources` directory of your app and open `bootstrap.properties`. If the file does not exist, create it. Add the following line to the file.
101101

102102
```properties
103-
spring.cloud.azure.appconfiguration.stores[0].name= ${APP_CONFIGURATION_CONNECTION_STRING}
103+
spring.cloud.azure.appconfiguration.stores[0].connection-string= ${APP_CONFIGURATION_CONNECTION_STRING}
104104
```
105105

106106
1. In the App Configuration portal for your config store, select `Access keys` from the sidebar. Select the Read-only keys tab. Copy the value of the primary connection string.
@@ -280,7 +280,7 @@ Use the [Spring Initializr](https://start.spring.io/) to create a new Spring Boo
280280
mvn spring-boot:run
281281
```
282282

283-
1. Open a browser window, and go to the default URL for a locally hosted web app: `https://localhost:8080`.
283+
1. Open a browser window, and go to the URL: `http://localhost:8080/welcome`.
284284

285285
![Quickstart app launch local](./media/quickstarts/spring-boot-feature-flag-local-before.png)
286286

0 commit comments

Comments
 (0)