简体   繁体   English

Camel Upgrade 2.22破坏了Apache CXF端点

[英]Camel Upgrade 2.22 breaks Apache CXF endpoints

I have upgraded Camel 2.22. 我已经升级了骆驼2.22。 along with CXF version 3.2.5,Spring boot 2.04.RELEASE When I start my application I can't see any errors but the can't access endpoints anymore 与CXF版本3.2.5一起,Spring boot 2.04.RELEASE启动我的应用程序时,我看不到任何错误,但无法再访问端点

below is the code: 下面是代码:

1) Camel route: 1)骆驼路线:

<cxf:cxfEndpoint id="porEndpoint" address="/por/" serviceClass="x.y.z.service.PorService" publishedEndpointUrl="">
        <cxf:binding>
            <soap:soapBinding version="1.2"/>
        </cxf:binding>
</cxf:cxfEndpoint>

2) Properties: cxf.path=/services 2)属性:cxf.path = / services
server.servlet.context-path=/fuse-test server.servlet.context路径= /熔断器测试

3)This URL worked fine earlier : http://localhost:8080/fuse-test/services/por?wsdl 3)此URL之前运行良好: http:// localhost:8080 / fuse-test / services / por?wsdl

I have enabled trace at context level and log mode as debug but I can't find any errors apart from : ossldap.SpringSecurityLdapTemplate : Ignoring PartialResultException 我已在上下文级别和日志模式下将跟踪启用为调试,但除ossldap.SpringSecurityLdapTemplate外,我找不到任何错误:忽略PartialResultException

camel-cxf(v 3.2.5) somehow doesn't include the cxf spring boot. camel-cxf(v 3.2.5)某种程度上不包含cxf spring boot。 After adding the below dependency the endpoint is available 添加以下依赖项后,端点可用

<dependency>
            <groupId>org.apache.cxf</groupId>
            <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
            <version>3.2.6</version>
</dependency>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 使用CXF和Apache Camel迁移到Spring Boot 2的问题 - Problems migrating to Spring boot 2 with CXF and Apache Camel Apache Camel CXF 设置传输属性 - Apache Camel CXF set Transport Properties Spring 引导 + Apache CXF。 仅发布带有注释的端点 - Spring Boot + Apache CXF. Publish endpoints with annotations only Apache Camel SOAP/CXF 请求服务器(Spring Boot) - Apache Camel SOAP/CXF request to Server (Spring Boot) 如何使用Apache Camel,CXF和Spring Boot实现Web服务版本网关 - How to implement webservice version gateway with Apache Camel, CXF and Spring Boot 具有多个 lambda 端点的 Spring Boot + Apache Camel + AWS Lambda - Spring Boot + Apache Camel + AWS Lambda with multiple lambda endpoints 测试Apache Camel + SpringBoot时使用备用端点 - Using alternate endpoints when testing Apache Camel + SpringBoot Apache CXF + SpringBoot:我可以为一个SOAP Web服务发布多个端点吗? - Apache CXF + SpringBoot: Can I publish multiple endpoints for one SOAP web-service? Spring Boot 应用程序在升级到 Apache Derby 10.15 后中断——为什么? - Spring Boot application breaks after upgrade to Apache Derby 10.15 -- why? 在Apache Camel应用程序中,单元测试如何才能注入模拟端点来代替真实端点? - In an Apache Camel application, how can unit tests inject mock endpoints in place of real ones?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM