All Known Implementing Classes:
SessionScope, AbstractRequestAttributesScope, RequestScope
org.springframework.context.ApplicationContext implementations such as a org.springframework.web.context.WebApplicationContext may register additional standard scopes specific to their environment, e.g. "request" and "session" , based on this Scope SPI.
Even if its primary use is for extended scopes in a web environment,
this SPI is completely generic: It provides the ability to get and put
objects from any underlying storage mechanism, such as an HTTP session
or a custom conversation mechanism. The name passed into this class's
get and remove methods will identify the
target object in the current scope.
Scope implementations are expected to be thread-safe.
One Scope instance can be used with multiple bean factories
at the same time, if desired (unless it explicitly wants to be aware of
the containing BeanFactory), with any number of threads accessing
the Scope concurrently from any number of factories.
Juergen - HoellerRob - Harrop2.0 - | Method from org.springframework.beans.factory.config.Scope Summary: |
|---|
| get, getConversationId, registerDestructionCallback, remove |
| Method from org.springframework.beans.factory.config.Scope Detail: |
|---|
This is the central operation of a Scope, and the only operation that is absolutely required. |
The exact meaning of the conversation ID depends on the underlying storage mechanism. In the case of session-scoped objects, the conversation ID would typically be equal to (or derived from) the session ID ; in the case of a custom conversation that sits within the overall session, the specific ID for the current conversation would be appropriate. Note: This is an optional operation. It is perfectly valid to
return |
Note: This is an optional operation. This method will only be called for scoped beans with actual destruction configuration (DisposableBean, destroy-method, DestructionAwareBeanPostProcessor). Implementations should do their best to execute a given callback at the appropriate time. If such a callback is not supported by the underlying runtime environment at all, the callback must be ignored and a corresponding warning should be logged. Note that 'destruction' refers to to automatic destruction of the object as part of the scope's own lifecycle, not to the individual scoped object having been explicitly removed by the application. If a scoped object gets removed via this facade's #remove(String) method, any registered destruction callback should be removed as well, assuming that the removed object will be reused or manually destroyed. |
name from the underlying scope.
Returns Note that an implementation should also remove a registered destruction callback for the specified object, if any. It does, however, not need to execute a registered destruction callback in this case, since the object will be destroyed by the caller (if appropriate). Note: This is an optional operation. Implementations may throw UnsupportedOperationException if they do not support explicitly removing an object. |