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

发布于 2024-08-28 11:47:58 字数 756 浏览 6 评论 0原文

我在很多 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

深海里的那抹蓝 2024-09-04 11:47:58

好吧,2.0.0-M1 只是 spring-ws-core 的最新版本。

<dependency>
    <groupId>org.springframework.ws</groupId>
    <artifactId>spring-ws-core</artifactId>
    <version>2.0.0-M1</version>
</dependency>

实际上,当前的稳定版本是 1.5.9。

<dependency>
    <groupId>org.springframework.ws</groupId>
    <artifactId>spring-ws-core</artifactId>
    <version>1.5.9</version>
</dependency>

Well, 2.0.0-M1 is simply the latest version of spring-ws-core.

<dependency>
    <groupId>org.springframework.ws</groupId>
    <artifactId>spring-ws-core</artifactId>
    <version>2.0.0-M1</version>
</dependency>

And actually, the current stable version is 1.5.9.

<dependency>
    <groupId>org.springframework.ws</groupId>
    <artifactId>spring-ws-core</artifactId>
    <version>1.5.9</version>
</dependency>
南街九尾狐 2024-09-04 11:47:58

好吧,

对maven不太了解。但是 spring 源有一个可以 Maven 访问的存储库:-

http://www.springsource.com/repository/app/bundle/version/detail?name=org.springframework.web&version=3.0.2.RELEASE

看起来maven的东西是

<dependency>  
 <groupId>org.springframework</groupId>    
 <artifactId>spring-web</artifactId>  
 <version>3.0.2.RELEASE</version> 
</dependency>

但是,再说一遍,我使用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

<dependency>  
 <groupId>org.springframework</groupId>    
 <artifactId>spring-web</artifactId>  
 <version>3.0.2.RELEASE</version> 
</dependency>

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文