I'm stumped. I thought &
AND ;
were valid delimiters for a query parameter.
It seems that tomcat 7 HttpServletRequest.getParameterValues("key")
won't recognize my parameter when it is like this:
http://acme.com/my.jsp?x=1;y=2;z=3
If I go here, there is mention of the semi-colon:
http://en.wikipedia.org/wiki/Query_string
Is there a way to force tomcat 7 to recognize them within this method? Or is there a better method to use?
Thanks.