forked from AxonIQ/reference-guide
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into feature/release-notes
- Loading branch information
Showing
2 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
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
50 changes: 50 additions & 0 deletions
50
implementing-domain-logic/command-handling/aggregate-polymorphism.md
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,50 @@ | ||
# Aggregate Polymorphism | ||
|
||
In certain cases it is beneficial to have a polymorphic hierarchy in aggregate structure. Subtypes in polymorphic | ||
aggregate hierarchy inherit `@CommandHandler`s, `@EventSourcingHandler`s and `@CommandHandlerInterceptor`s from the | ||
super aggregates. Based on `@AggregateIdentifier` the correct aggregate type is loaded and command is executed on it. | ||
Let's take a look at the following example: | ||
|
||
```java | ||
public abstract class Card {} | ||
|
||
public class GiftCard extends Card {} | ||
|
||
public class ClosedLoopGiftCard extends GiftCard {} | ||
|
||
public class OpenLoopGiftCard extends GiftCard {} | ||
|
||
public class RechargeableGiftCard extends ClosedLoopGiftCard {} | ||
``` | ||
|
||
We can define this structure as Polymorphic Aggregate of type `GiftCard` and subtypes of `ClosedLoopGiftCard`, | ||
`OpenLoopGiftCard`, and `RechargeableGiftCard`. If there are handlers present on `Card` class, those will be present on | ||
all aggregates as well. | ||
|
||
While modeling a polymorphic aggregate hierarchy it is important to keep these constraints in mind: | ||
- It is not allowed to have a constructor annotated with `@CommandHandler` on abstract aggregate. The rationale for this | ||
is that an abstract aggregate can never be created. | ||
- Having creational command handlers of the same command name on different aggregates in the same hierarchy is forbidden | ||
too, since Axon cannot derive which one to invoke. | ||
- In a polymorphic aggregate hierarchy it is not allowed to have multiple `@AggregateIdentifier` and `@AggregateVersion` | ||
annotated fields. | ||
|
||
## Registering aggregate subtypes | ||
|
||
A polymorphic aggregate hierarchy can be registered via the `AggregateConfigurer` by invoking | ||
`AggregateConfigurer#registerSubtype(Class)`. Do note that children of the parent aggregate that are not registered as | ||
a sub-type will __automatically__ be registered as a sub-type. In the following example `ClosedLoopGiftCard` is | ||
transitively registered as a subtype of `GiftCard`. However, if there is a | ||
`LimitedRechargeableGiftCard extends RechargeableGiftCard` defined, it will not be picked up (unless explicitly | ||
registered as a subtype). | ||
|
||
```java | ||
AggregateConfigurer<GiftCard> configurer = AggregateConfigurer.defaultConfiguration(GiftCard.class) | ||
.withSubtype(OpenLoopGiftCard.class) | ||
.withSubtype(RechargeableGiftCard.class); | ||
``` | ||
|
||
> **Polymorphic Aggregates in Spring** | ||
> | ||
> If you are using Spring, polymorphic hierarchy will be automatically detected based on `@Aggregate` annotations and | ||
class hierarchy. |