GH-80 - Introduce ApplicationModuleIntegrationListener.

We now provide @ApplicationModuleIntegrationListener as shortcut for the combination of @Async @Transactional @TransactionalEventListener to provide a dedicated annotation for the recommended integration arrangement.
This commit is contained in:
Oliver Drotbohm
2022-11-24 21:24:27 +01:00
parent 486f7e0c86
commit 9463b598c3
5 changed files with 112 additions and 8 deletions

View File

@@ -23,6 +23,20 @@
<optional>true</optional>
</dependency>
<!-- For @ModuleIntegrationListener -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
</project>