I am trying to get a String parameter \"username\" from the request with Expression Language. I\'ve done some researc
String
\"username\"
request
The syntax to get the attributes from session would be,
${sessionScope[name]}
And for the request attributes , you can use
${param[name]}
For more info,