A.javax.servlet.http.HttpSessionListener B.javax.servlet.http.HttpSessionValueListener C.javax.servlet.http.HttpSessionBindingListener D.javax.servlet.http.HttpSessionAttributeListener
In your web application,you need to execute a block of code whenever the session object is first created. Which design will accomplish this goal?()
A.Create an HttpSessionListener class and implement the sessionInitialized method with that block ofcode. B.Create an HttpSessionActivationListener class and implement the sessionCreated method with thatblock of code. C.Create a Filter class, call the getSession(false) method, and if the result was null, then execute that block of code. D.Create an HttpSessionListener class and implement the sessionCreated method with that block of code.
A.To manage the user’s login and logout activities. B.To store information on the client-side between HTTP requests. C.To store information on the server-side between HTTP requests. D.To tell the web container to keep the HTTP connection alive so it can make subsequent requestswithout the delay of making the TCP connection.