I have a jsp page that used to work, and I'm not quite sure what happened. I'm using Eclipse's jetty to power it.
As a test, this works:
<%=request.getParameter("abc")%>
so does this:
<%out.write(request.getParameter("abc"));%>
using EL though is just returning an empty string:
${abc}
As I say, I had been using this last method right along, and for some reason it's no longer working. I've tried looking at other jsp pages I have that were working as well, and they are just returning empty for any parameters as well, despite them existing.