I have an variable written in Spring EL that I want to url decode, can I just drop in a piece of code between the curly brackets or does the parsing have to be done in the controller?
<form:hidden id="pass" path="password" value="${param.password}" htmlEscape="true" />
For example, can I do something like this:
<form:hidden id="pass" path="password" value="${URLDecoder.decode(param.password, "UTF-8")}" htmlEscape="true" />
The issue is that some passwords have special characters and are url encoded.