91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

IDEA使用Gradle構建SpringBoot項目工程的方法

發布時間:2020-08-12 16:12:53 來源:億速云 閱讀:1202 作者:小新 欄目:開發技術

這篇文章主要介紹了IDEA使用Gradle構建SpringBoot項目工程的方法,具有一定借鑒價值,需要的朋友可以參考下。希望大家閱讀完這篇文章后大有收獲。下面讓小編帶著大家一起了解一下。

背景

最近在研究搭建spring源碼調試環境時,接觸到到gradle項目構建工具。由于之前習慣于maven項目的構建,故通過此文記錄相關gradle的項目構建知識。

Gradle

Gradle是一個構建工具,用于管理項目依賴和構建項目工程。Gradle拋棄了Maven的基于XML的繁瑣配置,采用特定語言Groovy的配置,大大簡化了構建代碼的行數。

項目結構

IDEA使用Gradle構建SpringBoot項目工程的方法

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項目

IDEA使用Gradle構建SpringBoot項目工程的方法

使用Gradle構建項目

IDEA使用Gradle構建SpringBoot項目工程的方法

項目結構

  • src結構和maven結構一致;gradle文件夾 存放gradle wrapper相關文件;build.gradle相當于maven里面的pom.xml,setting.gradle用于多模塊的配置。

IDEA使用Gradle構建SpringBoot項目工程的方法

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()
}

添加依賴

IDEA使用Gradle構建SpringBoot項目工程的方法

項目依賴的格式為 作用范圍修飾符 ( ‘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使用Gradle構建SpringBoot項目工程的方法
IDEA使用Gradle構建SpringBoot項目工程的方法

感謝你能夠認真閱讀完這篇文章,希望小編分享IDEA使用Gradle構建SpringBoot項目工程的方法內容對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,遇到問題就找億速云,詳細的解決方法等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

卢湾区| 宁陵县| 红安县| 永登县| 高唐县| 长海县| 高青县| 行唐县| 安仁县| 砀山县| 民乐县| 平湖市| 介休市| 延津县| 邵武市| 紫阳县| 甘德县| 徐水县| 石棉县| 龙泉市| 福清市| 新宾| 定襄县| 乐业县| 台山市| 分宜县| 苍南县| 宽甸| 珠海市| 晋城| 渭源县| 怀集县| 抚州市| 深泽县| 马尔康县| 营山县| 余姚市| 彰化市| 长宁区| 洪雅县| 八宿县|