I have a variable being passed to my JSP view from a spring controller that maps to an enum. It is being printed out at 'ENUM_VALUE', not very user friendly.
What is the best way to convert this to a more readable form like 'Enum value'.
I'd rather a pure EL solution so as to avoid writting more code in the controller to parse this, but all comments appreciated.