TomEE 9.1.1
[email protected] Wed, 1 Nov 2023 12:08:06 -0700
| Newsgroups | gmane.comp.java.openejb.user |
|---|---|
| Message-ID | <[email protected]> |
Hi All, I’m upgrading our system from TomEE 8.0.0 to use TomEE 9.1.1 and I have an openejb-jar file set up. After the upgrade, the fault-out-interceptors configuration is not working anymore: > <?xml version="1.0"?> > <openejb-jar xmlns="http://www.openejb.org/openejb-jar/1.1"> > <pojo-deployment class-name="jaxrs-application"> > <!-- @formatter:off --> > <properties> > cxf.jaxrs.providers = <some here, these work> > cxf.jaxrs.in-interceptors = <some here, these work> > cxf.jaxrs.out-interceptors = <some here, these work> > cxf.jaxrs.out-fault-interceptors = <nothing here works anymore> > </properties> > <!-- @formatter:on --> > </pojo-deployment> > </openejb-jar> Is it something specific to the TomEE dependencies? Or do you have any advice on how I should set up fault interceptors? I replace all packages with from javax to jakarta using IntelliJ’s and I tried using exception mappers, but we need more than just that, as we push more info to our monitoring service to help investigate them. Any help is much appreciated. Andre