Replies: 2 comments 1 reply
-
We don't have such reference but if Spring IoC is all you need from that stack then you might as well take advantage of Quarkus. It has a similar IoC framework called ArC and both Vert.x and Mutiny are well integrated. There is also a Spring compatibility layer which would allow you to reuse some Spring annotations. |
Beta Was this translation helpful? Give feedback.
-
Spring have already supported Smallrye Mutiny in the core reactive adapters since Spring 5.11. You can use Smally Mutiny like Reactor/RxJava3 in Spring/Spring Boot freely, https://github.com/hantsy/spring-reactive-sample/blob/master/smallrye-mutiny/src/main/java/com/example/demo/PostController.java You can also integrate Hibernate Reactive(which supports Java 8 ComptuableFuture and Smallrye Mutiny) freely with Spring, check https://github.com/hantsy/spring-puzzles/tree/master/hibernate-reactive-mutiny |
Beta Was this translation helpful? Give feedback.
-
Can I get a code reference on how to integrate Smallrye Mutiny APIs to springboot and only using Spring IOC for the project, every other aspect of the project should run on vertx and Smallrye
Beta Was this translation helpful? Give feedback.
All reactions