Package jodd.petite.scope

Petite bean scopes.

See:
          Description

Interface Summary
Scope Petite container bean scope.
 

Class Summary
DefaultScope Default Petite container scope.
ProtoScope Prototype scope doesn't pool any beans, so each time bean is requested, a new instance will be created.
SessionScope Session scope stores unique object instances per single http session.
SingletonScope Singleton scope pools all bean instances so they will be created only once in the container context.
ThreadLocalScope Thread local Petite bean scope.
 

Package jodd.petite.scope Description

Petite bean scopes.