Annotation Interface SessionScope
@Target({TYPE,METHOD})
@Retention(RUNTIME)
@Documented
@Scope("session")
public @interface SessionScope
@SessionScope
is a specialization of @Scope
for a
component whose lifecycle is bound to the current web session.
Specifically, @SessionScope
is a composed annotation that
acts as a shortcut for @Scope("session")
with the default
proxyMode()
set to TARGET_CLASS
.
@SessionScope
may be used as a meta-annotation to create custom
composed annotations.
- Since:
- 4.3
- Author:
- Sam Brannen
- See Also:
-
Optional Element Summary
-
Element Details
-
proxyMode
Alias forScope.proxyMode()
.Defaults to
ScopedProxyMode.TARGET_CLASS
.- Default:
- TARGET_CLASS
-