CDI Concepts: Difference between revisions
Jump to navigation
Jump to search
Line 22: | Line 22: | ||
The object exists to serve exactly one client (bean) and has the same lifecycle as the client. | The object exists to serve exactly one client (bean) and has the same lifecycle as the client. | ||
{{Internal|@javax.enterprise.context.Dependent|@Dependent}} | |||
==Conversation== | ==Conversation== |
Latest revision as of 15:18, 2 May 2017
Internal
beans.xml
Bean Scope
Request
Session
Application
The bean maintain shared state for the entire lifecycle of the application.
Dependent
The object exists to serve exactly one client (bean) and has the same lifecycle as the client.