twistycs
twistycs
Service A Async call B C D and then wait for response B,C,D and then end process . It's not support with async task?
This is Service A Call B, C and D: ``` @SagaStart @PostMapping("/contract") public ResponseEntity serviceA() { try { CompletableFuture insertServiceB= serviceB.insertServiceB(); CompletableFuture insertServiceC= serviceC.insertServiceC(); CompletableFuture insertServiceD= serviceD.insertServiceD(); CompletableFuture.allOf(insertServiceB,insertServiceC,insertServiceD).join(); } catch...
yes i try to service A call only Service B with sync task not async but globalTxId is null too.
@EnableOmega ?? i put this but the type EnableOmega is deprecated.
In demo what is version of omega-spring-starter ? i use omega-spring-starter-0.5.0 but anotation @EnableOmega can not use, its deprecated. I'm not sure if @EnableOmega cant use then GID be null.
I'm not sure. Service A call B,C,D. and I stop service D for cancel at service C but error message show Caused by: com.esotericsoftware.kryo.KryoException: Unable to find class: C Then...
@SagaStart at service A and then call service C for insert customer and D for insert information car. Not complicated .
All the time. If I run service C before service D. Then I restart service C and do it again it can use normally. **Log in service D to cancel...