I have a EL expression ${4+(param.a)*4} in a jsp. How do I use to handle cross-site scripting for the example expression.
Will the following line of code do the arithmetic operation first then spit out the result as string or evaluate the whole expression as string first?
I want to do the arithmetic operation 1st and then output the result as string.