transient or no scope
: The default scope. Meaning objects have no scope, they are recreated every single time you request them.singleton
: Objects are created once and live until your Application expirescachebox
: You can store your objects in any CacheBox provider and even provide timeouts for themsession
: Store them in the ColdFusion session
scopeserver
: Store them in the ColdFusion server
scoperequest
: Store them in the ColdFusion request
scopeapplication
: Store them in the ColdFusion application
scopeCUSTOM
: You can build your own scopes as well.Hint Pease note that using annotations is optional, you can configure every object in our configuration binder as well.