What's wrong with my Apache CXF client?

后端 未结 2 951
旧时难觅i
旧时难觅i 2021-02-01 05:10

This is part of my pom.xml:


  org.apache.cxf
  

        
2条回答
  •  北海茫月
    2021-02-01 05:40

    You likely have a 1.5 (or older) version of wsdl4j coming from someplace else. CXF requires the 1.6.x versions.

    EDIT:

    Also be on the lookout for the Axis version of this jar. You can exclude it like so:

            
                
                    axis-wsdl4j
                    axis
                
            
    

提交回复
热议问题