Package | Description |
---|---|
org.springframework.beans.factory.config |
SPI interfaces and configuration-related convenience classes for bean factories.
|
org.springframework.beans.factory.support |
Classes supporting the
org.springframework.beans.factory package. |
org.springframework.context.support |
Classes supporting the org.springframework.context package,
such as abstract base classes for ApplicationContext
implementations and a MessageSource implementation.
|
org.springframework.messaging.simp |
Generic support for Simple Messaging Protocols including protocols such as STOMP.
|
org.springframework.transaction.support |
Support classes for the org.springframework.transaction package.
|
org.springframework.web.context.request |
Support for generic request context holding, in particular for
scoping of application objects per HTTP request or HTTP session.
|
org.springframework.web.context.support |
Classes supporting the
org.springframework.web.context package,
such as WebApplicationContext implementations and various utility classes. |
Modifier and Type | Method and Description |
---|---|
Scope |
ConfigurableBeanFactory.getRegisteredScope(String scopeName)
Return the Scope implementation for the given scope name, if any.
|
Scope |
BeanExpressionContext.getScope() |
Modifier and Type | Method and Description |
---|---|
void |
CustomScopeConfigurer.addScope(String scopeName,
Scope scope)
Add the given scope to this configurer's map of scopes.
|
void |
ConfigurableBeanFactory.registerScope(String scopeName,
Scope scope)
Register the given scope, backed by the given Scope implementation.
|
Constructor and Description |
---|
BeanExpressionContext(ConfigurableBeanFactory beanFactory,
Scope scope) |
Modifier and Type | Method and Description |
---|---|
Scope |
AbstractBeanFactory.getRegisteredScope(String scopeName) |
Modifier and Type | Method and Description |
---|---|
void |
AbstractBeanFactory.registerScope(String scopeName,
Scope scope) |
Modifier and Type | Class and Description |
---|---|
class |
SimpleThreadScope
A simple thread-backed
Scope implementation. |
Modifier and Type | Class and Description |
---|---|
class |
SimpSessionScope
A
Scope implementation exposing the attributes of a SiMP session
(e.g. |
Modifier and Type | Class and Description |
---|---|
class |
SimpleTransactionScope
A simple transaction-backed
Scope implementation, delegating to
TransactionSynchronizationManager 's resource binding mechanism. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractRequestAttributesScope
Abstract
Scope implementation that reads from a particular scope
in the current thread-bound RequestAttributes object. |
class |
RequestScope
Request-backed
Scope
implementation. |
class |
SessionScope
Session-backed
Scope
implementation. |
Modifier and Type | Class and Description |
---|---|
class |
ServletContextScope
Scope wrapper for a ServletContext, i.e. |