Friday, October 5, 2018

Spring Boot: How to disable @Scheduled in unit tests

Spring Boot: How to disable @Scheduled in unit tests


Spring framework exposes a nice feature to schedule some task: @Scheduled annotation. But this features makes very difficult unit test process – all scheduled tasks start work in any unit test where Spring scanning is used.

https://ysden123.wordpress.com/2018/10/05/spring-boot-how-to-disable-scheduled-in-unit-tests/#more-2459

Monday, September 24, 2018

Vertx: Difference between io.vertx.reactivex and io.vertx.rxjava

Each time, when I return to development with Vertx, I have to decide what package to use: io.vertx.rxjava or io.vertx.reactivex? This is a reason, why I created this post.
io.vertx.rxjava package uses RxJava 1. io.vertx.reactivex package uses current RX extension – RxJava 2.