I'm facing a difficult problem when I am coding with Velocity Template.
#set($key = "")
$key is a dynamic variable.
So when I want to get the property of another variable which has property is $key. What will I do?
#set($temp = #evaluate("$data.$key");
or
#set($temp = $data.$key);
All of them is not valid. Please help me!!!