如何在 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>
它将按预期工作。
然而,我在设置对 web 服务的 spring-ws-core 的依赖时遇到问题。我可以在任何存储库中找到的最新版本是 2.0.0-M1。
http://mvnrepository.com/artifact/org.springframework.ws/ spring-ws-core
关于我需要在我的 Maven POM 中包含哪些内容才能使 Spring 3 Web 服务正常工作的任何线索:)
I get this on a lot of Maven dependencies, though current source of pain is Spring.
I'll set a Spring version and include it like so:
<spring-version>3.0.0.RELEASE</spring-version>
<!-- Spring framework -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>${spring-version}</version>
</dependency>
Which works as expected.
I am however having problems setting my dependency on spring-ws-core for web services. The latest I can find in any repo is 2.0.0-M1.
http://mvnrepository.com/artifact/org.springframework.ws/spring-ws-core
Any clues on what I need to include in my maven POM to get Spring 3 web services to work :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
好吧,2.0.0-M1 只是 spring-ws-core 的最新版本。
实际上,当前的稳定版本是 1.5.9。
Well, 2.0.0-M1 is simply the latest version of spring-ws-core.
And actually, the current stable version is 1.5.9.
好吧,
对maven不太了解。但是 spring 源有一个可以 Maven 访问的存储库:-
http://www.springsource.com/repository/app/bundle/version/detail?name=org.springframework.web&version=3.0.2.RELEASE
看起来maven的东西是
但是,再说一遍,我使用ivy而不是maven!
编辑:
哦,添加 Maven 存储库内容的说明位于 http://www 的常见问题解答中.springsource.com/repository/app/faq#q8。
Okay,
don't know too much about maven. But spring source have a repository which has maven access at:-
http://www.springsource.com/repository/app/bundle/version/detail?name=org.springframework.web&version=3.0.2.RELEASE
Looks like the maven stuff is
But, again, i use ivy not maven!
Edit:
Oh and instructions for adding maven repository stuff are in the faq at http://www.springsource.com/repository/app/faq#q8.