What is the difference between session and globalSession in Spring framework?
<bean id="exampleBean" class="com.test.baen.ExampleBean" scope="session"/>
<bean id="exampleBean" class="com.test.baen.ExampleBean" scope="globalSession"/>
As per my study, both are valid in the context of a web-aware Spring ApplicationContext.
Now, session bean scope will remain until the user session, but will globalSession bean scope be available throughout the whole application?
Is it the application scope?
I am unable to understand the term "global HTTP Session"; will it be available throughout the global HTTP Session?