Hi guys, I'm trying to enable a custom cdi scope on all process routes.
So I'd like to run some code before and after all routes execution. It could be before/after the route execution or before a bean/process invocation: .bean(myCustomScope, "startCustom") .bean(myBean, "myMethod") .bean(myCustomScope, "endCustom") Is there an easy way to do this?