Skip to content

Commit d8cf994

Browse files
committed
Refresh
1 parent 121301b commit d8cf994

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

articles/azure-app-configuration/enable-dynamic-configuration-java-spring-app.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ App Configuration exposes `AppConfigurationRefresh`, which can be used to check
8484
mvn spring-boot:run
8585
```
8686

87-
1. Open a browser window, and go to the URL: `http://localhost:8080`. You will see the message associated with your key.
87+
1. Open a browser window, and go to the URL: `http://localhost:8080`. You see the message associated with your key.
8888

8989
You can also use *curl* to test your application, for example:
9090

@@ -107,7 +107,7 @@ App Configuration exposes `AppConfigurationRefresh`, which can be used to check
107107
1. Refresh the browser page twice to see the new message displayed. The first time triggers the refresh, the second loads the changes.
108108

109109
> [!NOTE]
110-
> The library only checks for changes on the after the refresh interval has passed, if the period hasn't passed then no change will be seen, you will have to wait for the period to pass then trigger the refresh check.
110+
> The library only checks for changes on the after the refresh interval has passed. If the period hasn't passed then no change is displayed. Wait for the period to pass, then trigger the refresh check.
111111
112112
## Use automated refresh
113113
@@ -164,7 +164,7 @@ Then, open the *pom.xml* file in a text editor and add a `<dependency>` for `spr
164164
mvn spring-boot:run
165165
```
166166
167-
1. Open a browser window, and go to the URL: `http://localhost:8080`. You will see the message associated with your key.
167+
1. Open a browser window, and go to the URL: `http://localhost:8080`. You now see the message associated with your key.
168168
169169
You can also use *curl* to test your application, for example:
170170
@@ -187,7 +187,7 @@ Then, open the *pom.xml* file in a text editor and add a `<dependency>` for `spr
187187
1. Refresh the browser page twice to see the new message displayed. The first time triggers the refresh, the second loads the changes, as the first request returns using the original scope.
188188
189189
> [!NOTE]
190-
> The library only checks for changes on after the refresh interval has passed. If the refresh interval hasn't passed then it will not check for changes, you will have to wait for the interval to pass then trigger the refresh check.
190+
> The library only checks for changes on after the refresh interval has passed. If the refresh interval hasn't passed, then it doesn't check for changes. Wait for the interval to pass, then trigger the refresh check.
191191
192192
## Next steps
193193

articles/azure-app-configuration/enable-dynamic-configuration-java-spring-push-refresh.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ Event Grid Web Hooks require validation on creation. You can validate by followi
174174

175175
## Set up an event subscription
176176

177-
1. Open the App Configuration resource in the Azure portal, then click on `+ Event Subscription` in the `Events` pane.
177+
1. Open the App Configuration resource in the Azure portal, then select `+ Event Subscription` in the `Events` pane.
178178
179179
:::image type="content" source="./media/events-pane.png" alt-text="The events pane has an option to create new Subscriptions." :::
180180
@@ -188,9 +188,9 @@ Event Grid Web Hooks require validation on creation. You can validate by followi
188188
189189
1. The endpoint is the URI of the application + "/actuator/appconfiguration-refresh?{your-token-name}={your-token-secret}". For example `https://my-azure-webapp.azurewebsites.net/actuator/appconfiguration-refresh?myToken=myTokenSecret`
190190
191-
1. Click on `Create` to create the event subscription. When `Create` is selected a registration request for the Web Hook will be sent to your application. This is received by the Azure App Configuration client library, verified, and returns a valid response.
191+
1. Select `Create` to create the event subscription. When `Create` is selected a registration request for the Web Hook will be sent to your application. This is received by the Azure App Configuration client library, verified, and returns a valid response.
192192
193-
1. Click on `Event Subscriptions` in the `Events` pane to validate that the subscription was created successfully.
193+
1. Select `Event Subscriptions` in the `Events` pane to validate that the subscription was created successfully.
194194
195195
:::image type="content" source="./media/event-subscription-view-webhook.png" alt-text="Web Hook shows up in a table on the bottom of the page." :::
196196

articles/azure-app-configuration/howto-convert-to-the-new-spring-boot.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This article provides a reference on the changes and the actions needed to migra
1818

1919
## Group and artifact IDs changed
2020

21-
All of the group and artifact IDs in the Azure libraries for Spring Boot have been updated to match a new format. The new package names are:
21+
All of the group and artifact IDs in the Azure libraries for Spring Boot are updated to match a new format. The new package names are:
2222

2323
### [Spring Boot 3](#tab/spring-boot-3)
2424

@@ -153,7 +153,7 @@ public class ConfigurationClientCustomizerImpl implements ConfigurationClientCus
153153

154154
## Possible conflicts with Spring Cloud Azure global properties
155155

156-
[Spring Cloud Azure common configuration properties](/azure/developer/java/spring-framework/configuration) enable you to customize your connections to Azure services. The new App Configuration library will pick up any global or App Configuration setting that's configured with Spring Cloud Azure common configuration properties. Your connection to App Configuration will change if the configurations are set for another Spring Cloud Azure library.
156+
[Spring Cloud Azure common configuration properties](/azure/developer/java/spring-framework/configuration) enable you to customize your connections to Azure services. The new App Configuration library picks up any global or App Configuration setting that's configured with Spring Cloud Azure common configuration properties. Your connection to App Configuration changes if the configurations are set for another Spring Cloud Azure library.
157157

158158
You can override this behavior by using `ConfigurationClientCustomizer`/`SecretClientCustomizer` to modify the clients.
159159

articles/azure-app-configuration/howto-leverage-json-content-type.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: avanigupta
77
ms.service: azure-app-configuration
88
ms.devlang: azurecli
99
ms.topic: how-to
10-
ms.date: 03/27/2023
10+
ms.date: 10/24/2024
1111
ms.custom: devdivchpfy22, devx-track-azurecli
1212
ms.author: avgupta
1313
#Customer intent: I want to store JSON key-values in App Configuration store without losing the data type of each setting.

0 commit comments

Comments
 (0)