Spring boot 2.1.1 to 2.1.2: Error creating bean with name 'payloadRootAnnotationMethodEndpointMapping'

懵懂的女人 提交于 2019-12-04 10:58:39

The problem is due to SWS-1049 recently released in 3.0.6.RELEASE. There has been a subsequent fix to be more lenient.

Try setting spring-ws.version to 3.0.7.BUILD-SNAPSHOT in your pom.xml, and add https://repo.spring.io/snapshot with snapshots enabled. That should clear things up.

Please upgrade the Spring Boot to 2.1.4 release which includes spring-ws-core

I used the following version of spring-ws-code dependency:

        <dependency>
            <groupId>org.springframework.ws</groupId>
            <artifactId>spring-ws-core</artifactId>
            <version>2.4.0.RELEASE</version>
        </dependency>
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!