您好,登錄后才能下訂單哦!
這篇文章給大家介紹使用Maven怎么對Spring進行配置,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
Maven中的Spring基本依賴關系
Spring的設計是高度模塊化的 - 使用Spring的一部分不應該而且不需要另一部分。例如,基本的Spring Context可以沒有Persistence或MVC Spring庫。
讓我們先從一個基本Maven配置,將只使用了spring-context依賴:
<properties> <org.springframework.version>3.2.8.RELEASE</org.springframework.version> <!-- <org.springframework.version>4.0.2.RELEASE</org.springframework.version> --> </properties> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>${org.springframework.version}</version> <scope>runtime</scope> </dependency>
這個依賴項 - spring-context - 定義了實際的Spring Injection Container,并且有少量的依賴項:spring-core,spring-expression,spring-aop和spring-beans。通過支持一些核心Spring技術來擴充容器:Core Spring實用程序,Spring表達式語言(SpEL),面向對象編程支持和JavaBeans機制。
注意我們在運行時范圍中定義了依賴關系- 這將確保在任何特定于Spring的API上沒有編譯時依賴性。對于更高級的用例,可以從一些選定的Spring依賴項中刪除運行時范圍,但是對于更簡單的項目,不需要針對Spring進行編譯以充分利用該框架。
另請注意,從Spring 3.2開始,不需要定義CGLIB依賴項(現在已升級到CGLIB 3.0) - 它已被重新打包(所有net.sf.cglib包現在是org.springframework.cglib)并且直接在內部內聯spring-core JAR(有關其他詳細信息,請參閱JIRA)。
Maven配置Spring Persistence
現在讓我們看一下Spring Persistence依賴關系 - 主要是spring-orm:
<dependency> <groupId>org.springframework</groupId> <artifactId>spring-orm</artifactId> <version>${org.springframework.version}</version> </dependency>
這附帶了Hibernate和JPA支持 - 例如HibernateTemplate和JpaTemplate - 以及一些額外的,持久性相關的依賴項:spring-jdbc和spring-tx。
JDBC數據訪問庫定義了Spring JDBC支持以及JdbcTemplate,而spring-tx代表了極其靈活的事務管理抽象。
Maven配置Spring MVC
要使用Spring Web和Servlet支持,除了上面的核心依賴項外,還需要在pom中包含兩個依賴項:
<dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>${org.springframework.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>${org.springframework.version}</version> </dependency>
spring-web依賴項包含Servlet和Portlet環境的公共web特定實用程序,而spring-webmvc支持Servlet環境的MVC。
由于spring-webmvc將spring-web作為依賴項,因此在使用spring-webmvc時不需要明確定義spring-web。
使用Maven配置Spring Test
Spring Test Framework可以通過以下依賴項包含在項目中:
<dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <version>${spring.version}</version> <scope>test</scope> </dependency>
從Spring 3.2開始,Spring MVC Test項目已經包含在核心測試框架中 - 因此包括spring-test依賴就足夠了。
使用Milestones
Spring的發布版本托管在Maven Central上。但是,如果項目需要使用Milestones版本,則需要將自定義Spring存儲庫添加到pom中:
<repositories> <repository> <id>repository.springframework.maven.milestone</id> <name>Spring Framework Maven Milestone Repository</name> <url>http://repo.spring.io/milestone/</url> </repository> </repositories>
已定義了一個此存儲庫,該項目可以定義依賴項,例如:
<dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>3.2.0.RC2</version> </dependency>
使用Snapshots
與Milestones類似,Snapshots托管在自定義存儲庫中:
<repositories> <repository> <id>repository.springframework.maven.snapshot</id> <name>Spring Framework Maven Snapshot Repository</name> <url>http://repo.spring.io/snapshot/</url> </repository> </repositories>
在pom.xml中啟用SNAPSHOT存儲庫后,可以引用以下依賴項:
<dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>3.3.0.BUILD-SNAPSHOT</version> </dependency>
對于4.x:
<dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>4.0.3.BUILD-SNAPSHOT</version> </dependency>
關于使用Maven怎么對Spring進行配置就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。