Uses of Interface
org.springframework.beans.factory.config.Scope
Packages that use Scope Package Description org.springframework.beans.factory.config SPI interfaces and configuration-related convenience classes for bean factories.org.springframework.beans.factory.support Classes supporting theorg.springframework.beans.factorypackage.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 theorg.springframework.web.contextpackage, such as WebApplicationContext implementations and various utility classes.Uses of Scope in org.springframework.beans.factory.config
Methods in org.springframework.beans.factory.config that return Scope Modifier and Type Method Description ScopeConfigurableBeanFactory. getRegisteredScope(String scopeName)Return the Scope implementation for the given scope name, if any.ScopeBeanExpressionContext. getScope()Methods in org.springframework.beans.factory.config with parameters of type Scope Modifier and Type Method Description voidCustomScopeConfigurer. addScope(String scopeName, Scope scope)Add the given scope to this configurer's map of scopes.voidConfigurableBeanFactory. registerScope(String scopeName, Scope scope)Register the given scope, backed by the given Scope implementation.Constructors in org.springframework.beans.factory.config with parameters of type Scope Constructor Description BeanExpressionContext(ConfigurableBeanFactory beanFactory, Scope scope)Uses of Scope in org.springframework.beans.factory.support
Methods in org.springframework.beans.factory.support that return Scope Modifier and Type Method Description ScopeAbstractBeanFactory. getRegisteredScope(String scopeName)Methods in org.springframework.beans.factory.support with parameters of type Scope Modifier and Type Method Description voidAbstractBeanFactory. registerScope(String scopeName, Scope scope)Uses of Scope in org.springframework.context.support
Classes in org.springframework.context.support that implement Scope Modifier and Type Class Description classSimpleThreadScopeA simple thread-backedScopeimplementation.Uses of Scope in org.springframework.messaging.simp
Classes in org.springframework.messaging.simp that implement Scope Modifier and Type Class Description classSimpSessionScopeAScopeimplementation exposing the attributes of a SiMP session (e.g.Uses of Scope in org.springframework.transaction.support
Classes in org.springframework.transaction.support that implement Scope Modifier and Type Class Description classSimpleTransactionScopeA simple transaction-backedScopeimplementation, delegating toTransactionSynchronizationManager's resource binding mechanism.Uses of Scope in org.springframework.web.context.request
Classes in org.springframework.web.context.request that implement Scope Modifier and Type Class Description classAbstractRequestAttributesScopeAbstractScopeimplementation that reads from a particular scope in the current thread-boundRequestAttributesobject.classRequestScopeRequest-backedScopeimplementation.classSessionScopeSession-backedScopeimplementation.Uses of Scope in org.springframework.web.context.support
Classes in org.springframework.web.context.support that implement Scope Modifier and Type Class Description classServletContextScopeScopewrapper for a ServletContext, i.e.