1. 程式人生 > >關於webservice cxf在main函式能跑通,但放到web容器中報錯的解決方案

關於webservice cxf在main函式能跑通,但放到web容器中報錯的解決方案

其實這個問題是因為沒引cxf-http的包導致的,在網上查了半天也沒人給出個解決方案。

下面給出maven需要引cxf

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