Spring框架常用依赖配置--供使用时直接复制


Spring框架常用依赖配置--供使用时直接复制


以下仅为本人工作、学习过程中所接触到的内容,不足之处请多包涵。

    <properties>
        <org.springframework.version>4.3.19.RELEASE</org.springframework.version>
    </properties>

    <dependencies>
        <!-- Spring核心依赖 -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-core</artifactId>
            <version>${org.springframework.version}</version>
        </dependency>
        <!-- Spring 容器包 -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>${org.springframework.version}</version>
        </dependency>
        <!-- Spring web依赖 -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-web</artifactId>
            <version>${org.springframework.version}</version>
        </dependency>
    </dependencies>
posted @ 2020-08-26 23:36  海*风  阅读(175)  评论(0编辑  收藏  举报