美文网首页Java
Maven构建的Spring项目需要的依赖

Maven构建的Spring项目需要的依赖

作者: 花伤情犹在 | 来源:发表于2021-09-08 21:45 被阅读0次
 <!-- Spring依赖 -->
    <!-- 1.Spring核心依赖 -->
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-core</artifactId>
        <version>4.3.7.RELEASE</version>
    </dependency>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-beans</artifactId>
        <version>4.3.7.RELEASE</version>
    </dependency>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-context</artifactId>
        <version>4.3.7.RELEASE</version>
    </dependency>
<!-- 2.Spring dao依赖 -->
<!-- spring-jdbc包括了一些如jdbcTemplate的工具类 -->
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-jdbc</artifactId>
        <version>4.3.7.RELEASE</version>
    </dependency>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-tx</artifactId>
        <version>4.3.7.RELEASE</version>
    </dependency>
    <!-- 3.Spring web依赖 -->
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-web</artifactId>
        <version>4.3.7.RELEASE</version>
    </dependency>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-webmvc</artifactId>
        <version>4.3.7.RELEASE</version>
    </dependency>
    <!-- 4.Spring test依赖:方便做单元测试和集成测试 -->
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-test</artifactId>
        <version>4.3.7.RELEASE</version>
  </dependency>

一共四个方面:

1)spring核心依赖
spring-core、spring-beans、spring-context

2)spring dao依赖(提供JDBCTemplate)
spring-jdbc、spring-tx

3)spring web依赖
spring-web、spring-webmvc

4)spring test依赖
spring-test

相关文章

  • Eclipse 中使用maven构建Spring项目

    最新版的Spring需要使用Maven构建,本文讲述怎么在Eclipse构建Maven项目,以配置Spring项目...

  • Maven构建的Spring项目需要的依赖

    一共四个方面: 1)spring核心依赖spring-core、spring-beans、spring-conte...

  • IntelliJ IDEA 下 Spring Boot Devt

    添加依赖 使用 Maven 构建项目,在 pom.xml 中添加 spring-boot-devtools。 tr...

  • zpy项目构建整理

    目标: 使用maven构建项目,不依赖具体IDE 使用spring profile做环境选择,无需手动调整 项目构...

  • JavaEE额外介绍

    一.Maven 普通的项目需要依赖各式各样的jar包,maven是一个项目构建和管理的工具,提供了帮助管理 构建、...

  • 2019-02-14 Spring-boot-Docker 快

    Maven 构建Spring Boot 的Docker镜像 构建项目,修改配置通过 start.spring.io...

  • Java构建工具Ant+Ivy, Maven, Gradle

    Maven管理项目依赖及构建 Maven 管理项目依赖及构建的工具。Maven主要做了两件事:统一开发规范与工具统...

  • maven包冲突及解决思路

    maven包冲突 前情提要:原项目为spring项目,现需要改为Springboot项目。将pom依赖copy过来...

  • Maven-基础

    Maven-Apache项目构建工具,用来管理项目依赖 Maven构建的项目非常小jar包在仓库,而不在项目下面,...

  • 概述

    maven(几乎所有java项目都使用) maven功能:项目构建、依赖管理maven安装:https://mav...

网友评论

    本文标题:Maven构建的Spring项目需要的依赖

    本文链接:https://www.haomeiwen.com/subject/scdbwltx.html