If I want to create a HttpSession in my index.jsp (the first page of application), should I just do
<% HttpSession session = new HttpSession();
session.setAttribute(..);
%>
But it seems "session" is an "implicit"
JSP object. So I am wondering do I still need to instantiate it formally before I add attributes to it ?