Interface | Description |
---|---|
Scope |
Petite container bean scope.
|
Class | Description |
---|---|
ProtoScope |
Prototype scope doesn't pool any beans, so each time bean is requested,
a new instance will be created.
|
RequestScope |
Request scope.
|
SessionScope |
Session scope stores unique object instances per single http session.
|
ShutdownAwareScope |
Base
Scope class for scopes that collect
destroyable beans and implement shutdown routine. |
SingletonScope |
Singleton scope pools all bean instances so they will be created only once in
the container context.
|
ThreadLocalScope |
Thread local Petite bean scope.
|
Copyright © 2003-present Jodd Team