1. 程式人生 > 其它 >cxf報錯 Cannot find any registered HttpDestinationFactory from the Bus

cxf報錯 Cannot find any registered HttpDestinationFactory from the Bus

技術標籤:java錯誤管理java

錯誤資訊:Cannot find any registered HttpDestinationFactory from the Bus.

報錯主要是因為缺少jetty依賴

一般新增如下依賴即可

<dependency>
        <groupId>org.apache.cxf</groupId>
        <artifactId>cxf-rt-transports-http-jetty</artifactId>
        <version>3.2.4</version>
</dependency>

完整的cxf依賴


<dependency>
        <groupId>org.apache.cxf</groupId>
        <artifactId>cxf-core</artifactId>
        <version>3.2.4</version>
    </dependency>
    <dependency>
        <groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId> <version>3.2.4</version> </dependency> <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-rt-transports-http</artifactId> <version>
3.2.4</version> </dependency> <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-rt-transports-http-jetty</artifactId> <version>3.2.4</version> </dependency>