How to set the precedence for custom EndpointExceptionResolver in Spring web services
问题 I am trying to add custom error handling for Spring SOAP web services (version: 3.0.8) as per the steps in the below ticket. How to return custom SOAP Error from Spring Boot Endpoint Service? Added custom payload validator and EndpointExceptionResolver classes. However when the custom exception is thrown in Payload validator, it is being handled by default resolver (DetailSoapFaultResolver) instead of custom one. Though spring is recognising the new resolver it is given low precedence. How