4
votes
How can I share a variable or object between two or more Servlets?
Depends on the scope of the intended use of the data.
If the data is only used on a per-user basis, like user login info, page hit count, etc. use the session object
(httpServletRequest.ge …
