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
Update the `bootstrap.yml` file of your application with the following configurations.
122
+
123
+
```yml
124
+
spring:
125
+
cloud:
126
+
azure:
127
+
appconfiguration:
128
+
stores:
129
+
-
130
+
endpoint: <your-endpoint>
131
+
selects:
132
+
-
133
+
snapshot-name: <name-of-your-snapshot>
134
+
trim-key-prefix:
135
+
- <prefix-to-trim>
136
+
```
137
+
138
+
> [!NOTE]
139
+
> Any prefix such as `/application/` which is automatically trimmed when using a key filter will need to be specified for snapshots or they will not be properly mapped to the correct `@ConfigurationProperties` classes.
140
+
> Snapshot support is available if you use version **4.12.0-beta.1**/**5.6.0-beta.1** or later of any of the following packages.
0 commit comments