리액티브 프로그래밍 Spring WebFlux - 디버깅, 테스팅
디버깅 디버그 모드 Hooks.onOperatorDebug(); 비용이 많이 드는 동작 과정을 거치기 때문에 -> 처음부터 디버그 모드를 활성화하는 것은 권장하지 않음 checkpoint() 사용Flux .just(2, 4, 6, 8) .zipWith(Flux.just(1, 2, 3, 0), (x, y) -> x/y) .checkpoint("Example12_4.zipWith.checkpoint", true) .map(num -> num + 2) .checkpoint("Example12_4.map.checkpoint", true) .subscribe( data -> log.info("# onNext: {}", data), ..
2024. 8. 4.