Is it possible to evaluate a String as EL expression in JSP and get value from it?
I need an expression like ${model.${fieldPath}}
where fieldPath will contain the required object path from a nested object model.
I can get the actual field path by using but I am not sure how to evaluate a string and get the value from it
Any help regarding this would be highly appreciated.