当前位置: 移动技术网 > IT编程>开发语言>Java > IDEA使用Gradle构建SpringBoot项目工程的详细教程

IDEA使用Gradle构建SpringBoot项目工程的详细教程

2020年08月11日  | 移动技术网IT编程  | 我要评论

背景

最近在研究搭建spring源码调试环境时,接触到到gradle项目构建工具。由于之前习惯于maven项目的构建,故通过此文记录相关gradle的项目构建知识。

gradle

gradle是一个构建工具,用于管理项目依赖和构建项目工程。gradle抛弃了maven的基于xml的繁琐配置,采用特定语言groovy的配置,大大简化了构建代码的行数。

项目结构

在这里插入图片描述

plugin sample

pluginmanagement {
	repositories {
		gradlepluginportal()
		maven { url 'https://repo.spring.io/plugins-release' }
	}
}

plugins {
	id "com.gradle.enterprise" version "3.2"
	id "io.spring.gradle-enterprise-conventions" version "0.0.2"
}

include "spring-aop"
include "spring-aspects"
include "spring-beans"
include "spring-context"
include "spring-context-indexer"
include "spring-context-support"
include "spring-core"
include "kotlin-coroutines"
project(':kotlin-coroutines').projectdir = file('spring-core/kotlin-coroutines')
include "spring-expression"

idea使用gradle构建springboot项目工程

新建springboot项目

在这里插入图片描述

使用gradle构建项目

在这里插入图片描述

项目结构

  • src结构和maven结构一致;gradle文件夹 存放gradle wrapper相关文件;build.gradle相当于maven里面的pom.xml,setting.gradle用于多模块的配置。

在这里插入图片描述

build.gradle

  • plugins:插件配置;
  • sourcecompatibility:jdk版本号
  • repositories:仓库配置,mavencentral()代表中央仓库;
  • dependencies:依赖的坐标集合
plugins {
  id 'org.springframework.boot' version '2.3.1.release'
  id 'io.spring.dependency-management' version '1.0.9.release'
  id 'java'
}

group = 'com.example'
version = '0.0.1-snapshot'
sourcecompatibility = '1.8'

repositories {
  mavencentral()
}

dependencies {
  implementation 'org.springframework.boot:spring-boot-starter-web'
  testimplementation('org.springframework.boot:spring-boot-starter-test') {
    exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
  }
}

test {
  usejunitplatform()
}

添加依赖

在这里插入图片描述

项目依赖的格式为 作用范围修饰符 ( ‘groupid:artifactid:version' )

dependencies {
  implementation 'org.springframework.boot:spring-boot-starter-web'
  testimplementation('org.springframework.boot:spring-boot-starter-test') {
    exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
  }

  // https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-data-jpa
   compile ('org.springframework.boot: spring-boot-starter-data-jpa: 2.3.1 ')

}

gradle打包

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

总结

到此这篇关于idea使用gradle构建springboot项目工程的文章就介绍到这了,更多相关idea构建springboot项目工程内容请搜索移动技术网以前的文章或继续浏览下面的相关文章希望大家以后多多支持移动技术网!

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网