-
@Retention(value=RUNTIME) @Target(value=ANNOTATION_TYPE) @Documented public @interface Stereotype
Specifies that an annotation type is a stereotype.
In many systems, use of architectural patterns produces a set of recurring bean roles. A stereotype allows a framework developer to identify such a role and declare some common metadata for beans with that role in a central place.
A bean may declare zero, one or multiple stereotypes, by applying the stereotype annotation to the bean class or producer method or field.
A stereotype encapsulates any combination of:
- a default scope, and
- a set of interceptor bindings.
The default scope of a stereotype is defined by annotating the stereotype with a scope type. A stereotype may declare at most one scope. If a bean explicitly declares a scope, any default scopes declared by its stereotypes are ignored.
@RequestScoped @Stereotype @Target(TYPE) @Retention(RUNTIME) public @interface Action { }
The interceptor bindings of a stereotype are defined by annotating the stereotype with the interceptor binding types. A stereotype may declare zero, one or multiple interceptor bindings. An interceptor binding declared by a stereotype is inherited by any bean that declares that stereotype.
@RequestScoped @Secure @Transactional @Stereotype @Target(TYPE) @Retention(RUNTIME) public @interface Action { }
A stereotype may also specify that:
- all beans with the stereotype have defaulted bean EL names, or that
- all beans with the stereotype are alternatives.
A stereotype may declare an empty
@Named
annotation, which specifies that every bean with the stereotype has a defaulted name when a name is not explicitly specified by the bean.@RequestScoped @Named @Secure @Transactional @Stereotype @Target(TYPE) @Retention(RUNTIME) public @interface Action { }
A stereotype may declare an
@Alternative
annotation, which specifies that every bean with the stereotype is an alternative.@Alternative @Stereotype @Target(TYPE) @Retention(RUNTIME) public @interface Mock { }
A stereotype may declare other stereotypes. Stereotype declarations are transitive. A stereotype declared by a second stereotype is inherited by all beans and other stereotypes that declare the second stereotype.
- Author:
- Pete Muir, Gavin King
- See Also:
the built-in stereotype @Model
Traduction non disponible
Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Version en cache
22/08/2025 01:29:38 Cette version de la page est en cache (à la date du 22/08/2025 01:29:38) afin d'accélérer le traitement.Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la version plus récente de la page.
Document créé le 11/06/2005, dernière modification le 18/08/2025
Source du document imprimé : https://www.gaudry.be/java-api-javaee-rf-javax/enterprise/inject/stereotype.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.