Raheem
Raheem

Reputation: 11

Springboot jaxws (cxf) issue

I am unable to run spring-boot with apache cxf project. I tried with spring boot 1.5.3 & 1.4.4 along with cxf version 3.1.10/3.1.11

my entries:

  <parent>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-parent</artifactId>
   <version>1.4.4.RELEASE</version>

   <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-devtools</artifactId>
    </dependency>

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

Please help me.

Upvotes: 0

Views: 579

Answers (1)

Karthik Prasad
Karthik Prasad

Reputation: 10034

If you are using spring boot 1.5+, please use cxf 3.1.11, refer this bug for more info

Upvotes: 1

Related Questions