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.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. |
org.springframework.web.portlet.context |
Support for Spring's application context concept in a portlet environment,
including ApplicationContext 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 |
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 |
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. |
Modifier and Type | Class and Description |
---|---|
class |
PortletContextScope
Scope wrapper for a PortletContext, i.e. |
Copyright © 2015. All rights reserved.