Is it possible to retrieve an array of request parameters with same key using EL (just like the returned list by request.getParameterValues() in a servlet)?
I tried to retrieve it using this way:
${param["key"]}
but it only returned first value. Does EL allow to retrieve all values?
Yes, just use
${paramValues}instead.See also: