-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- modify SyntheticBeanBuildItem so that it can be used for "regular" synthetic beans, i.e. no recorder proxy is needed - introduce BeanDiscoveryFinishedBuildItem and SynthesisFinishedBuildItem - introduce the "CDI Integration Guide" and remove the relevant parts from the reference guide - deprecate some build items - code refactoring Co-authored-by: Chris Laprun <[email protected]> Co-authored-by: Matej Novotny <[email protected]> Co-authored-by: Guillaume Smet <[email protected]>
- Loading branch information
1 parent
337e9fa
commit 0cef176
Showing
38 changed files
with
1,351 additions
and
854 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
...rc/deployment/src/main/java/io/quarkus/arc/deployment/BeanDiscoveryFinishedBuildItem.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package io.quarkus.arc.deployment; | ||
|
||
import io.quarkus.arc.processor.BeanDeployment; | ||
|
||
/** | ||
* Consumers of this build item can easily inspect all class-based beans, observers and injection points registered in the | ||
* application. Synthetic beans and observers are not included. If you need to consider synthetic components as well use | ||
* the {@link SynthesisFinishedBuildItem} instead. | ||
* <p> | ||
* Additionaly, the bean resolver can be used to apply the type-safe resolution rules, e.g. to find out wheter there is a bean | ||
* that would satisfy certain combination of required type and qualifiers. | ||
* | ||
* @see SynthesisFinishedBuildItem | ||
*/ | ||
public final class BeanDiscoveryFinishedBuildItem extends RegisteredComponentsBuildItem { | ||
|
||
public BeanDiscoveryFinishedBuildItem(BeanDeployment beanDeployment) { | ||
super(beanDeployment); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.