java - JSP Expression Language get parameter -
I'm trying to get the string
parameter "username"
I have done some research with Expression Language , but there was no way to do this, let me get to $ {pageContext.request.parameter.username} Need something like that.
How to obtain a specific request parameter using only the expression language?
If you receive a feature from 'session', try it $ {username}.
If you get a parameter from 'request', then try $$ {param.username}.
Comments
Post a Comment