I have a JSF application using PrimeFaces 6.2 and Spring 5.1.4. I read, that an exception handler can be defined in the faces-config.xml
like this:
<factory>
<exception-handler-factory>my.package.MyExceptionHandlerFactory</exception-handler-factory>
</factory>
I wondered how I could get the dependencies injected into an ExceptionHandlerFactory
and ExceptionHandler
?