Is Application Context in Spring Framework user specific or application specific?

The context is application-wide, but individual beans can have narrower scopes.

The context is application-wide, but individual beans can have narrower scopes. The most common scopes are singleton (default: one per application) prototype (a new bean is created each time one is requested) request (one bean per HTTP request) session (one bean per HTTP session) Obviously, the latter two types are user-specific beans. Reference: Bean Scopes.

The application context is application level. It doesn't really make sense to talk about it as being tied to users.

It's application-specific, it applies to the entire application.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions