I am making the url(for viewing specific customer) in my CustomerList.jsp as below where customer_message
is an request attribute which is an array.
when I inspect customer_message
in CustomerList i see it array containing two Float values
var custURL="<s:url namespace="/customer action="view-customer" method="viewCustomer"/>?customer_message=<s:property value="#request['customer_message']"/>";
But when I get the request in view-customer action and I do request.getParameter("customer_message")
, I see it containing only one value.
Am I doing some mistake in passing customer_message
as array?