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
LocationDataTemplate = {
sample-data-template = {
City = Mumbai
Country = India
}
}
HotelDetails = [
{
Name = "The Taj Mahal Palace"
Address = "Colaba"
},
${LocationDataTemplate.sample-data-template}{
Name = "Four Seasons Hotel"
Address = "Worli"
}
]
In HotelDetails we are using substitution as ${LocationDataTemplate.sample-data-template}.
While loading this config data of 'HotelDetails' we want to load with substitution details intact as we want to maintain reference of substitution.
We tried multiple scenarios but did not got the way to load details with substitutions.
Please share sample code for this scenario.
The text was updated successfully, but these errors were encountered:
srikanth-exabeam
changed the title
how to load the config with substitution also
how to load the config with substitution details
Aug 1, 2023
@ekrich the link you shared is for uses of substitutions, but we need raw details of substitutions.
ConfigConcatenation.java has the 'pieces' property to share substitution and config details separately but we can't use 'ConfigConcatenation' class since it has default scoped.
we have the config below format
In HotelDetails we are using substitution as ${LocationDataTemplate.sample-data-template}.
While loading this config data of 'HotelDetails' we want to load with substitution details intact as we want to maintain reference of substitution.
We tried multiple scenarios but did not got the way to load details with substitutions.
Please share sample code for this scenario.
The text was updated successfully, but these errors were encountered: