Please enable JavaScript.
Coggle requires JavaScript to display documents.
Java EE (JSF (MVC Architecture (View (Composite component based (3rd Party…
-
Java EE
-
CDI
Annotations
-
-
@Disposes
Identifies the disposed parameter of a disposer method, which allows the application to perform customized clean-up of an object returned by a producer method/field
-
@Named
-
Beans don't require to be marked with @Named
annotation to be accessible in other part of the system. It is, however, required for them to be accessed in JSF
Injections
-
When type is not sufficient, use @Qualifier
-
-
-
-
EJB3
-
Types
Session Bean
-
@Stateful
-
1-1 relationship between client and bean e.g. 100 client connection means 100 instances of stateful bean in memory
-
-
Message Driven Bean
Attributes
-
-
Unlike Session bean, it cannot be accessed directly by client
-
Extension of the messaging system, representing endpoint functionality
-
-
-
-
-
-