私はspringで提供されているチュートリアルに従っており、なぜ私の.warファイルが空であるのか分からないようです。コードを表示/ダウンロードするにはhereをクリックしてください。最終目標はこのファイルをダウンロードし、.warファイルを作成してtomcatサーバーに展開することです。スプリングブートアプリケーションのためのwarを生成する
を「戦争を」が、これは唯一のゼロクラスファイルが含まれている戦争を生成します。私はbuild.gradleに以下を追加しました
は、プラグインを適用します。
チュートリアルコードの場合build.gradle
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle
plugin:1.5.3.RELEASE")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'war'
apply plugin: 'idea'
apply plugin: 'org.springframework.boot'
jar {
baseName = 'gs-spring-boot'
version = '0.1.0'
}
repositories {
mavenCentral()
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
compile("org.springframework.boot:spring-boot-starter-web")
// tag::actuator[]
compile("org.springframework.boot:spring-boot-starter-actuator")
// end::actuator[]
// tag::tests[]
testCompile("org.springframework.boot:spring-boot-starter-test")
// end::tests[]
}
はあなたにもjarファイルベース名を持つブロック(およびバージョンの名前を変更しようとした持っています)戦争に? – dunni
はい、違いはありません – Jim