How I can set an attribute in a session using expression language in the following code
<body>
<h1>Hello ${param.name}!</h1>
<% String n = $ {param.name} %>
<%
session.setAttribute("user", n);
%>
<a href="process.jsp">visit</a>
</body>