Can servlet attribute names contain a hyphen -?
问题 Can servlet attribute names contain a hyphen - ? Because, I tried to retrieve the attributes from the request set in the doPost in my servlet, but the result is not what I'm looking for. In my servlet I have this : String X_USER = request.getParameter("X-User"); request.setAttribute("X-User", X_USER); String YYYY_YYYY = request.getParameter("Y_CODE"); request.setAttribute("Y-Code", YYYY_YYYY); In my JSP where I want to show these attributes I do this: <li>${X-User}</li> <li>${Y-Code}</li> The