การพึ่งพา maven ใดที่จะรวมไว้สำหรับ spring 3.0


114

ฉันกำลังพยายามทำโครงการแรกด้วย Spring 3.0 (และ maven) ฉันใช้ Spring 2.5 (และเวอร์ชันไพรเมอร์) ในบางโครงการ อย่างไรก็ตามฉันค่อนข้างสับสนฉันต้องกำหนดโมดูลใดให้เป็นการอ้างอิงใน pom.xml ของฉัน ฉันแค่ต้องการใช้ฟังก์ชันคอนเทนเนอร์หลัก (ถั่ว, แกน, บริบท, เอล)

ฉันเคยทำสิ่งนี้:

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

แต่ตอนนี้ฉันสับสนพอสมควรเนื่องจากไม่มีโมดูลสปริงแบบเต็มสำหรับเวอร์ชัน 3.0 อีกต่อไป ฉันลองทำตามขั้นตอนต่อไปนี้ แต่ไม่ได้ผล (บางคลาสหายไป)

    <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.5 เป็น 3.0
Nils Schmidt

คำตอบ:


227

มีโพสต์ที่ดีมากในSpring Blogจาก Keith Donald ซึ่งให้รายละเอียดเกี่ยวกับวิธีการได้รับ Spring 3 Aritfacts กับ Mavenพร้อมความคิดเห็นที่ระบุรายละเอียดเมื่อคุณต้องการการอ้างอิงแต่ละรายการ ...

<!-- 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
ขอบคุณจริงๆต้องค้นหาอีกครั้งเพราะฉันพบ & ทำลิงค์หายไปเมื่อสองสามวันก่อน .. การมีที่นี่หมายความว่าอาจจะหาคนได้ง่ายกว่า Spring Blog ..
Tim

และสำหรับ Spring 4 ให้พิจารณาเปลี่ยนเป็น Spring Boot
Tim

29

Spring (ในปัจจุบัน) ทำให้ง่ายต่อการเพิ่ม 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สำหรับข้อมูลเพิ่มเติม


แนวทางดังกล่าวอาจเป็นปัญหาหากคุณมี Spring Security ในโครงการเช่นกันเนื่องจากวิธีการแก้ปัญหาการพึ่งพา Maven ทำงาน (เส้นทางที่สั้นที่สุด) - ตรวจสอบSpring Securityของฉันด้วยบทความMaven
Eugen

1
@Eugen จุดดี. ในกรณีนี้จะเป็นการดีกว่าเพียงแค่ประกาศสิ่งประดิษฐ์ความปลอดภัยในฤดูใบไม้ผลิซึ่งแก้ไขสิ่งประดิษฐ์ "สปริงคอร์" ที่รองรับด้วยเวอร์ชันที่ถูกต้อง (โชคไม่ดีที่ไม่ใช่เวอร์ชันเสถียรล่าสุด)
FrVaBe


2

เนื่องจากคำถามนี้ดูเหมือนว่าจะยังคงได้รับค่อนข้างมากของมุมมองก็อาจจะมีประโยชน์ในการทราบว่าสำหรับฤดูใบไม้ผลิ 4+ มันง่ายที่สุดที่จะเริ่มใช้Spring Bootและฤดูใบไม้ผลิ Boot ปอมเริ่มต้น

การใช้ Spring Boot มีการพึ่งพาน้อยกว่าในการจัดการ (และทำให้เกิดความขัดแย้งน้อยลง) และการตั้งค่า Spring Context ที่ใช้งานได้ดีนั้นง่ายกว่ามาก ฉันขอแนะนำอย่างยิ่ง


1

ขาดเรียนอะไรไป ชื่อคลาสควรเป็นเบาะแสที่ดีสำหรับโมดูลที่หายไป

FYI ฉันรู้ว่ามันสะดวกมากที่จะรวมโถสปริง uber แต่สิ่งนี้ทำให้เกิดปัญหาเมื่อรวมกับโครงการอื่น ๆ ประโยชน์ประการหนึ่งที่อยู่เบื้องหลังระบบการพึ่งพาคือการแก้ปัญหาความขัดแย้งของเวอร์ชันระหว่างการอ้างอิง

ถ้าห้องสมุดของฉันขึ้นอยู่กับ spring-core: 2.5 และคุณขึ้นอยู่กับไลบรารีของฉันและ uber-spring: 3.0 ตอนนี้คุณมีสปริง 2 เวอร์ชันใน classpath ของคุณ

คุณสามารถหลีกเลี่ยงสิ่งนี้ได้ด้วยการยกเว้น แต่ง่ายกว่ามากในการแสดงรายการการอ้างอิงอย่างถูกต้องและไม่ต้องกังวลกับมัน


1

คุณสามารถเพิ่มการพึ่งพาบริบทสปริงสำหรับขวดโหลสปริง คุณจะได้รับไหต่อไปนี้พร้อมกับมัน

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

การอ้างอิงบริบทฤดูใบไม้ผลิ

หากคุณต้องการส่วนประกอบของเว็บคุณสามารถใช้การพึ่งพาspring-webmvc

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

การอ้างอิง Spring webmvc

คุณสามารถใช้เวอร์ชันใดก็ได้ที่คุณต้องการ ฉันใช้ 5.0.5 แล้วปล่อยที่นี่


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.