section-engineering-education / engineering-education

“Section's Engineering Education (EngEd) Program is dedicated to offering a unique quality community experience for computer science university students."
Apache License 2.0
364 stars 890 forks source link

In servlet, how is the session concept used? #3993

Closed Chaun864 closed 2 years ago

Chaun864 commented 3 years ago

Proposed title of article

In servlet, how is the session concept used?

Proposed article introduction

A session is a way of keeping track of a client's activity across multiple requests. It simply implies that each time a user queries the server at a specific interval of time, the server interprets the request as a new request. As a result, we must keep track of a user's current status in order to recognize them.

For session techniques, the Servlet application employs four distinct approaches, namely: HttpSession, Cookies, Hidden form fields, and URL Rewriting. In this article, we will only discuss HTTPSession.

Key takeaways

  1. The HttpSession and what it does?.
  2. HttpSession object.
  3. HttpSession interface methods.
  4. HttpSession Example.

    Article quality

    How is your article unique? Tell us what makes your approach different from similar articles that have published on the same topic? Is yours more in-depth? Does it cover additional topics? Do you provide handy tips or anecdotal advice?

References

N/A

hectorkambow commented 3 years ago

Good afternoon and thank you for submitting your article for publishing. Your article has been entered into our queue and should be reviewed (and published pending any changes) as soon as a peer reviewer is finished with the ones in the queue before it. 🚀 Thank you.

hectorkambow commented 3 years ago

@Chaun864

Sounds like a helpful topic - lets please be sure it adds value beyond what is in any official docs and/or what is covered in other blog sites. (the articles should go beyond a basic explanation - and it is always best to reference any EngEd article and build upon it).

Please be attentive to grammar/readability and make sure that you put your article through a thorough editing review prior to submitting for final approval. (There are some great free tools that we reference in EngEd resources.) ANY ARTICLE SUBMITTED WITH GLARING ERRORS WILL BE IMMEDIATELY CLOSED.

Please be sure to double check that it does not overlap with any existing EngEd articles, articles on other blog sites, or any incoming EngEd topic suggestions (if you haven't already) to avoid any potential article closure, please reference any relevant EngEd articles in yours. - Approved

WanjaMIKE commented 2 years ago

Closed #3993 via #4106