Contact Us About Sponsorship

Questions about Micronaut Foundation sponsorship?

Please complete this form, and we’ll follow up with you shortly.

[hubspot type=form portal=4547412 id=a7b3ddfa-64b0-47fd-8358-45fa6a09456a]

Micronaut Framework 5.0 drops support for RxJava 2

by Sergio Del Amo Caballero Tags:

Micronaut Framework 5.0, to be released in Q2 2026, drops support for RxJava 2. Micronaut 5 users have two reactive options: Project Reactor or RxJava 3.

Micronaut public APIs are reactive library–agnostic. However, internally, when a reactive library is required, we use Project Reactor.

If you want to migrate from RxJava 2 to RxJava 3, you need to replace the dependency io.micronaut.rxjava2:micronaut-rxjava2 with io.micronaut.rxjava3:micronaut-rxjava3, and update the following imports:

  • io.reactivex.Completableio.reactivex.rxjava3.core.Completable
  • io.reactivex.Flowableio.reactivex.rxjava3.core.Flowable
  • io.reactivex.Maybeio.reactivex.rxjava3.core.Maybe
  • io.reactivex.Singleio.reactivex.rxjava3.core.Single