We have spring beans like:
@Component
@Scope(value="session")
public class MyBean {
}
How internally, spring associates HTTP realms, such as a request, session with the corresponding bean realm. Is there a role for this RequestContextListener
?
source
share