我已經用Spring Boot和Gradle在Spring Tool Suite中創建了一個項目,我真的不知道如何導出才能使其工作。如何將Spring Boot項目導出到可執行的獨立文件?
我不太瞭解gradle,只是從maven倉庫添加依賴的基礎知識。所以在一些文章中說應用應用程序插件來完成任務,但我不知道如何設置配置文件以及如何創建可執行文件。
如果任何人都可以編寫或鏈接一步一步的詳細解釋如何做到這一點,將非常感激。
這是我的build.gradle文件:
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.3.1.RELEASE")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'spring-boot'
springBoot {
mainClass = "com.rodamientosbulnes.objetivosventa.Application"
executable = true
}
jar {
baseName = 'objetivosventa'
version = '0.1.0'
}
repositories {
mavenCentral()
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
compile('org.springframework.boot:spring-boot-starter')
compile('org.springframework:spring-jdbc')
compile('net.sourceforge.jtds:jtds:1.3.1')
compile('org.apache.poi:poi-ooxml:3.13')
compile('com.miglayout:miglayout-swing:4.2')
}
task wrapper(type: Wrapper) {
gradleVersion = '2.3'
}
謝謝!!,我真是一個白癡,我不知道它只是建立任務而創建的。 – giorgiline