Spring 3.0に含めるMaven依存関係はどれですか?


114

Spring 3.0(およびmaven)で最初のプロジェクトを実行しようとしています。かなりの数のプロジェクトでSpring 2.5(およびプライマーバージョン)を使用しています。それにもかかわらず、少し混乱しています。pom.xmlで依存関係として定義する必要があるモジュールは何ですか。コアコンテナー関数(beans、core、context、el)を使用したいだけです。

私はこれをするのに慣れていました:

<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring</artifactId>
    <version>2.5.6</version>
</dependency>

しかし、バージョン3.0用の完全にパックされたSpringモジュールはもうないので、今はちょっと混乱しています。私は以下を試しましたが、うまくいきませんでした(一部のクラスがありません)。

    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-core</artifactId>
        <version>3.0.0.RELEASE</version>
    </dependency>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-expression</artifactId>
        <version>3.0.0.RELEASE</version>
    </dependency>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-beans</artifactId>
        <version>3.0.0.RELEASE</version>
    </dependency>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-context</artifactId>
        <version>3.0.0.RELEASE</version>
    </dependency>

何か助けていただければ幸いです!


実際には、2番目のコード例で指定されているように動作します。他のいくつかの問題で混乱しました。不要な質問でごめんなさい。とにかく質問を続けることをお勧めします。おそらく2.5から3.0に切り替えるときに同じ問題が発生する可能性があります。
Nils Schmidt

回答:


227

Keith DonaldのSpringブログに、MavenSpring 3のAritfactsを取得する方法の詳細について、本当にすばらしい投稿がありました。コメントには、各依存関係が必要になるタイミングが詳しく記載されています...

<!-- Shared version number properties -->
<properties>
    <org.springframework.version>3.0.0.RELEASE</org.springframework.version>
</properties>
<!-- Core utilities used by other modules.
    Define this if you use Spring Utility APIs 
    (org.springframework.core.*/org.springframework.util.*)-->
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-core</artifactId>
    <version>${org.springframework.version}</version>
</dependency>
<!-- Expression Language (depends on spring-core)
    Define this if you use Spring Expression APIs 
    (org.springframework.expression.*)-->
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-expression</artifactId>
    <version>${org.springframework.version}</version>
</dependency>
<!-- Bean Factory and JavaBeans utilities (depends on spring-core)
    Define this if you use Spring Bean APIs 
    (org.springframework.beans.*)-->
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-beans</artifactId>
    <version>${org.springframework.version}</version>
</dependency>
<!-- Aspect Oriented Programming (AOP) Framework 
    (depends on spring-core, spring-beans)
    Define this if you use Spring AOP APIs 
    (org.springframework.aop.*)-->
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-aop</artifactId>
    <version>${org.springframework.version}</version>
</dependency>
<!-- Application Context 
    (depends on spring-core, spring-expression, spring-aop, spring-beans)
    This is the central artifact for Spring's Dependency Injection Container
    and is generally always defined-->
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-context</artifactId>
    <version>${org.springframework.version}</version>
</dependency>
<!-- Various Application Context utilities, including EhCache, JavaMail, Quartz, 
    and Freemarker integration
    Define this if you need any of these integrations-->
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-context-support</artifactId>
    <version>${org.springframework.version}</version>
</dependency>
<!-- Transaction Management Abstraction 
    (depends on spring-core, spring-beans, spring-aop, spring-context)
    Define this if you use Spring Transactions or DAO Exception Hierarchy
    (org.springframework.transaction.*/org.springframework.dao.*)-->
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-tx</artifactId>
    <version>${org.springframework.version}</version>
</dependency>
<!-- JDBC Data Access Library 
    (depends on spring-core, spring-beans, spring-context, spring-tx)
    Define this if you use Spring's JdbcTemplate API 
    (org.springframework.jdbc.*)-->
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-jdbc</artifactId>
    <version>${org.springframework.version}</version>
</dependency>
<!-- Object-to-Relation-Mapping (ORM) integration with Hibernate, JPA and iBatis.
    (depends on spring-core, spring-beans, spring-context, spring-tx)
    Define this if you need ORM (org.springframework.orm.*)-->
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-orm</artifactId>
    <version>${org.springframework.version}</version>
</dependency>
<!-- Object-to-XML Mapping (OXM) abstraction and integration with JAXB, JiBX, 
    Castor, XStream, and XML Beans.
    (depends on spring-core, spring-beans, spring-context)
    Define this if you need OXM (org.springframework.oxm.*)-->
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-oxm</artifactId>
    <version>${org.springframework.version}</version>
</dependency>
<!-- Web application development utilities applicable to both Servlet and 
    Portlet Environments 
    (depends on spring-core, spring-beans, spring-context)
    Define this if you use Spring MVC, or wish to use Struts, JSF, or another
    web framework with Spring (org.springframework.web.*)-->
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-web</artifactId>
    <version>${org.springframework.version}</version>
</dependency>
<!-- Spring MVC for Servlet Environments 
    (depends on spring-core, spring-beans, spring-context, spring-web)
    Define this if you use Spring MVC with a Servlet Container such as 
    Apache Tomcat (org.springframework.web.servlet.*)-->
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-webmvc</artifactId>
    <version>${org.springframework.version}</version>
</dependency>
<!-- Spring MVC for Portlet Environments 
    (depends on spring-core, spring-beans, spring-context, spring-web)
    Define this if you use Spring MVC with a Portlet Container 
    (org.springframework.web.portlet.*)-->
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-webmvc-portlet</artifactId>
    <version>${org.springframework.version}</version>
</dependency>
<!-- Support for testing Spring applications with tools such as JUnit and TestNG
    This artifact is generally always defined with a 'test' scope for the 
    integration testing framework and unit testing stubs-->
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-test</artifactId>
    <version>${org.springframework.version}</version>
    <scope>test</scope>
</dependency>

3
おかげで、実際に私が見つけた&数日前にリンクを失ったとして、それが再び..ここでそれを持つことは、それは...春のブログよりも人のために見つけることが、おそらく簡単です意味を探すために持っていた
ティム


29

Spring(現在)は、1つの依存関係だけを使用して、Springをプロジェクトに簡単に追加できます。

<dependency>
 <groupId>org.springframework</groupId>
 <artifactId>spring-context</artifactId>
 <version>3.1.2.RELEASE</version>
</dependency> 

これは解決します

[INFO] The following files have been resolved:
[INFO]    aopalliance:aopalliance:jar:1.0:compile
[INFO]    commons-logging:commons-logging:jar:1.1.1:compile
[INFO]    org.springframework:spring-aop:jar:3.1.2.RELEASE:compile
[INFO]    org.springframework:spring-asm:jar:3.1.2.RELEASE:compile
[INFO]    org.springframework:spring-beans:jar:3.1.2.RELEASE:compile
[INFO]    org.springframework:spring-context:jar:3.1.2.RELEASE:compile
[INFO]    org.springframework:spring-core:jar:3.1.2.RELEASE:compile
[INFO]    org.springframework:spring-expression:jar:3.1.2.RELEASE:compile

詳細については、Spring Frameworkのドキュメントページをご覧ください。


Mavenの依存関係の解決方法(最短パス)が原因で、プロジェクトにSpring Securityがある場合も、このアプローチは問題になる可能性があります。私のSpring Security with Maven Article
Eugen

1
@ユーゲン良い点。この場合、サポートされている「spring-core」アーティファクトを正しいバージョン(残念ながら最新の安定バージョンではない)で解決するspring-securityアーティファクトを宣言するだけでもよいでしょう。
FrVaBe 2013年


2

この質問はまだ非常に多くの見解を得ているようですので、Spring 4以降Spring Bootでは、Spring BootスターターPOMを使用するのが最も簡単であることに注意してください。

Spring Bootを使用すると、管理する依存関係が少なくなり(したがって、競合が少なくなり)、適切に統合された正常に機能するSpring Contextを設定する方がはるかに簡単になります。私はそれを強くお勧めします。


1

どのクラスが欠けていますか?クラス名自体は、不足しているモジュールの良い手掛かりになるはずです。

参考までに、uberスプリングjarを含めると本当に便利ですが、これは他のプロジェクトと統合するときに本当に問題を引き起こします。依存関係システムの背後にある利点の1つは、依存関係間のバージョンの競合を解決することです。

私のライブラリがspring-core:2.5に依存していて、私のライブラリとuber-spring:3.0に依存している場合、クラスパスに2つのバージョンのSpringがあります。

除外でこれを回避することができますが、依存関係を正しくリストし、それについて心配する必要がない方がはるかに簡単です。


1

Spring jarのSpring コンテキスト依存関係を追加できます。それに伴って、次のjarファイルが取得されます。

<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-context</artifactId>
    <version>5.0.5.RELEASE</version>
</dependency>

Springコンテキストの依存関係

Webコンポーネントも必要な場合は、spring-webmvc依存関係を使用できます。

<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-webmvc</artifactId>
    <version>5.0.5.RELEASE</version>
</dependency>

Spring webmvcの依存関係

必要なバージョンを使用できます。ここでは5.0.5.RELEASEを使用しました。


0

あなたはこれを試すことができます

<dependencies>

    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-core</artifactId>
        <version>3.1.0.RELEASE</version>
    </dependency>

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

    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-webmvc</artifactId>
        <version>3.1.0.RELEASE</version>
    </dependency>
</dependencies>`

0

BOMを使用してバージョンの問題を解決します。

サードパーティのライブラリ、または別のSpringプロジェクトが、古いリリースへの推移的な依存関係を導入している場合があります。直接の依存関係を自分で明示的に宣言するのを忘れた場合、あらゆる種類の予期しない問題が発生する可能性があります。

このような問題を克服するために、Mavenは「部品表」(BOM)依存関係の概念をサポートしています。

https://docs.spring.io/spring/docs/4.3.18.RELEASE/spring-framework-reference/html/overview.html#overview-maven-bom

<dependency>
  <groupId>org.springframework</groupId>
  <artifactId>spring-framework-bom</artifactId>
  <version>3.2.12.RELEASE</version>
  <type>pom</type>
</dependency>
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.