小编Ben*_*Ben的帖子

如何在POM.xml中设置对Spring Web Services的依赖

我在很多Maven依赖项上得到了这个,尽管当前的痛苦来源是Spring.

我将设置一个Spring版本并包含它:

 <spring-version>3.0.0.RELEASE</spring-version>

 <!-- Spring framework -->
 <dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-core</artifactId>
    <version>${spring-version}</version>
 </dependency>
Run Code Online (Sandbox Code Playgroud)

哪个按预期工作.

然而,我在设置我对spring-ws-core对web服务的依赖时遇到了问题.我能在任何回购中找到的最新版本是2.0.0-M1.

http://mvnrepository.com/artifact/org.springframework.ws/spring-ws-core

关于我需要包含在我的maven POM中以获得Spring 3 Web服务工作的任何线索:)

spring maven-2 web-services spring-ws

2
推荐指数
1
解决办法
1万
查看次数

标签 统计

maven-2 ×1

spring ×1

spring-ws ×1

web-services ×1