春季网络服务的罐子之间的差异

时间:2017-03-01 18:36:37

标签: spring

我刚刚开始学习spring webservices,但是当我在一些例子中搜索教程时,他们为springwscore添加了以下依赖项,在一些示例中,使用了spring-boot-starter-ws.which jar sholud的以下依赖项,为什么春天有两个用于春季网络服务的罐子。

1 个答案:

答案 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>