我刚刚开始学习spring webservices,但是当我在一些例子中搜索教程时,他们为springwscore添加了以下依赖项,在一些示例中,使用了spring-boot-starter-ws.which jar sholud的以下依赖项,为什么春天有两个用于春季网络服务的罐子。
答案 0 :(得分:0)
最简单的方法是通过将Spring Ws Core添加到Maven pom.xml文件(如果您使用的是Maven)来包含依赖性
<dependencies>
<dependency>
<groupId>org.springframework.ws</groupId>
<artifactId>spring-ws-core</artifactId>
<version>2.4.0.RELEASE</version>
</dependency>
</dependencies>