Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow using @Priority within stereotypes. #524

Merged
merged 1 commit into from
Sep 14, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 24 additions & 3 deletions spec/src/main/asciidoc/core/definition.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -731,13 +731,12 @@ A stereotype encapsulates any combination of:
A stereotype may also specify that:

* all beans with the stereotype have defaulted bean names, or that
* all beans with the stereotype are alternatives.
* all beans with the stereotype are alternatives, or that
* all beans with the stereotype have predefined `@Priority`.


A bean may declare zero, one or multiple stereotypes.

// TODO how about we finally allowed declaring `@Priority` on stereotypes?

[[defining_new_stereotype]]

==== Defining new stereotypes
Expand Down Expand Up @@ -839,6 +838,28 @@ We may specify that all mock objects are alternatives:
public @interface Mock {}
----

[[priority_stereotype]]

===== Declaring stereotype with `@Priority`

A stereotype may declare a `@Priority` annotation which functions as a means of enabling and ordering affected alternatives, interceptors, and decorators (in {cdi_full}).

If a bean declares two different stereotypes that declare different priority values, the bean must explicitly declare a `@Priority` annotation. If the bean does not explicitly declare priority, the container automatically detects the problem and treats it as a definition error.

If a bean explicitly declares priority, any priority values declared by stereotypes are ignored.

Following sample shows a stereotype that can be used to mark bean as globally enabled alternative:

[source, java]
----
@Alternative
@Priority(Interceptor.Priority.APPLICATION + 5)
@Stereotype
@Target(TYPE)
@Retention(RUNTIME)
public @interface Mock {}
----

[[stereotypes_with_additional_stereotypes]]

===== Stereotypes with additional stereotypes
Expand Down