Exception the exception thrown from Stream.forEach() in ControllerAdvice

59 Views Asked by At

In my Spring MVC Based application, I have a ControllerAdvice defined.

Now, in one of my service classes, I have this parallelStream created:

rawImportList.parallelStream().forEach(rawImportBatch -> {
    rawImportBatch.parallelStream().forEach(this::importNominationFromRawImport)
});

The importNominationFromRawImport() method here, by definition, could throw a custom exception that should ideally be handled in the ControllerAdvice.

What could be the best way to achieve this?

0

There are 0 best solutions below