Is there any default scope for a @Named
CDI bean without additional @...Scoped
annotations? I have not found any relevant information in the official Weld documentation.
A @Named
bean can be accessed over JSF without additional annotations, so some implicit scope seems likely.
Thank you
The default scope is the dependent pseudo-scope
@Dependent
, as stated in the weld documentation:The javadoc for this annotation gives some more information about this scope: