Is there a way to get the reason a HystrixCommand
failed when using the @HystrixCommand
annotation within a Spring Boot application? It looks like if you implement your own HystrixCommand
, you have access to the getFailedExecutionException
but how can you get access to this when using the annotation? I would like to be able to do different things in the fallback method based on the type of exception that occurred. Is this possible?
I saw a note about HystrixRequestContext.initializeContext()
but the HystrixRequestContext
doesn't give you access to anything, is there a different way to use that context to get access to the exceptions?