I found THIS useful thread explaining how to use spring to extract the variables from path to the Map<String,String>
.
I would like to go even further and parse those variables into type using spring, but unfortunately i'm unable to do so.
format: "/mypath/[{varaible}]/something"
input: "/mypath/[0.0,0.1,0.2]/something"
output: Double[] myArray
Is it possible to use spring functionality for this?