This is an automated email from the ASF dual-hosted git repository. jungm pushed a commit to branch cxf-9209 in repository https://gitbox.apache.org/repos/asf/tomee.git
commit 5967e930815b29eec5769c3d60776b5d55d7eaad Author: Markus Jung <[email protected]> AuthorDate: Fri Apr 3 20:20:07 2026 +0200 Update constructed JAXRSServerFactoryBean for CXF-9209 --- .../main/java/org/apache/openejb/server/cxf/rs/CxfRsHttpListener.java | 1 + 1 file changed, 1 insertion(+) diff --git a/server/openejb-cxf-rs/src/main/java/org/apache/openejb/server/cxf/rs/CxfRsHttpListener.java b/server/openejb-cxf-rs/src/main/java/org/apache/openejb/server/cxf/rs/CxfRsHttpListener.java index b0e82b19da..149058baa0 100644 --- a/server/openejb-cxf-rs/src/main/java/org/apache/openejb/server/cxf/rs/CxfRsHttpListener.java +++ b/server/openejb-cxf-rs/src/main/java/org/apache/openejb/server/cxf/rs/CxfRsHttpListener.java @@ -1141,6 +1141,7 @@ public class CxfRsHttpListener implements RsHttpListener { factory.setDestinationFactory(transportFactory); factory.setBus(CxfUtil.getBus()); factory.setAddress(prefix); + factory.getProperties(true).put(JAXRSUtils.MATCHED_RESOURCE_TEMPLATE_BASE_PATH, prefix); return factory; }
