jodd.petite.scope |
Petite bean scopes.
|
Java Source File Name | Type | Comment |
DefaultScope.java | Class | Default Petite container scope. |
ProtoScope.java | Class | Prototype scope doesn't pool any beans, so each time bean is requested,
a new instance will be created. |
Scope.java | Interface | Petite container bean scope. |
ScopeReplacer.java | Interface | Utility class for replacing bean in scope. |
SessionScope.java | Class | Session scope stores unique object instances per single http session. |
SingletonScope.java | Class | Singleton scope pools all bean instances so they will be created only once in
the container context. |