In request scope, a bean is defined to an HTTP request whereas in session scope, it is scoped to an HTTP session. So for an instance,
if the bean scope is request and, a user makes more than one request for a web page in his user session, then on every request a new bean would be created.
Whereas if the scope is defined as session for the bean, if a user makes a request for a web page more than once, then on every request same bean would be returned.
please let me know if this understanding is correct?