You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/container-apps/java-spring-cloud-config-server-usage.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,7 @@ az containerapp update \
56
56
--resource-group <RESOURCE_GROUP>
57
57
```
58
58
59
-
## Spring Cloud Config Server configuration options
59
+
## Configuration options
60
60
61
61
The `az containerapp update` command uses the `--configuration` parameter to control how the Spring Could Config Server is configured. You can use multiple parameters at once as long as they're separated by a space. You can find more details in [Spring Cloud Config Server](https://docs.spring.io/spring-cloud-config/docs/current/reference/html/#_spring_cloud_config_server) docs.
62
62
@@ -112,7 +112,7 @@ The following configuration settings are available on the `spring.cloud.config.s
112
112
-**spring.cloud.config.server.encrypt.enabled**
113
113
- You can set this to `false`, to disable server-side decryption.
114
114
115
-
## Spring Cloud Config Server refresh
115
+
## Refresh
116
116
117
117
Services that consume properties need to know about the change before it happens. The default notification method for Spring Cloud Config Server involves manually triggering the refresh event, such as refresh by call `https://<YOUR-CONFIG-CLIENT-HOST-NAME>/actuator/refresh`, which may not be feasible if there are many app instances.
118
118
@@ -173,9 +173,9 @@ Instead, you can automatically refresh values from Config Server by letting the
173
173
}
174
174
```
175
175
176
-
## Encryption and Decryption with a symmetric key
176
+
## Encryption and decryption with a symmetric key
177
177
178
-
### ServerSideDecryption
178
+
### Server-side decryption
179
179
180
180
Bydefault, server-side encryption is enabled. Use the following steps to enable decryption in your application.
181
181
@@ -197,7 +197,7 @@ By default, server-side encryption is enabled. Use the following steps to enable
0 commit comments