Spring4.0系列2-环境搭建

Spring4.0系列1-新特性

Spring4.0系列2-环境搭建

Spring4.0系列3-@RestController

Spring4.0系列4-Meta Annotation(元注解)

Spring4.0系列5-@Conditional 

Spring4.0系列6-Generic Qualifier(泛型限定)

Spring4.0系列7-Ordering Autowired Collections

Spring4.0系列8-Groovy DSL

Spring4.0系列9-websocket简单应用

更多正在编写中。。。

 

为了避免在以后的Spring4.0系列中都提及Spring的环境配置。在这里统一介绍Spring4.0的环境搭建。

1、Spring 4.0 Maven Depedency

 

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

 

 

 

 

 

2、Spring 4.0 Gradle Depedency

 

dependencies {
    compile 'org.springframework:spring-context:4.0.0.RELEASE'
} 

 

 

 

 

 

3、下载Srping4.0 jar包

下载地址:http://repo.springsource.org/libs-release-local/org/springframework/spring/4.0.0.RELEASE/spring-framework-4.0.0.RELEASE-dist.zip

你可能感兴趣的:(spring4)