In the Azure App Configuration, we store value in the form of key-value pair. Generally, we store string values in the key-value pair like:
"key" : "red"
But I want to store map in value like:
"key" : {
1: {1,2,3},
2: {1,4}
}
In my spring-boot application, I will read the variable as Map<integer, List>