我第一次使用 Gradle 和 Spring Boot。我决定创建一个实际构建 WAR 存档的项目,并且我正在使用 Gradle Jetty 插件。如果我运行 jettyRun 或 jettyRunWar 任务,在我的浏览器中我看到的只是一个目录列表,而不是我的实际应用程序。
例如,jettyRunWar 任务会生成如下目录列表:
META-INF/
WEB-INF/
dist/
dist/ 目录包含我的静态文件。
自从我第一次使用 Gradle 和 Spring Boot 以来,也许我错过了一些基本的东西。
我正在尝试测试我的应用程序,同时更改我的静态文件而不重新启动应用程序。这是我的 build.gradle 文件。
buildscript {
repositories {
maven { url "http://repo.spring.io/libs-snapshot" }
mavenLocal()
}
dependencies {
classpath "org.springframework.boot:spring-boot-gradle-plugin:0.5.0.M6"
}
}
apply plugin: "java"
apply plugin: "idea"
apply plugin: "spring-boot"
apply plugin: "war"
war {
baseName = "mis-support-client"
version = "1.0.0-SNAPSHOT"
includes = ["dist/**"]
}
repositories {
mavenCentral()
maven { url "http://repo.spring.io/libs-snapshot" }
}
dependencies {
testCompile "junit:junit:4.11"
compile ("org.springframework.boot:spring-boot-starter-web:0.5.0.M7") {
exclude module: "spring-boot-starter-tomcat"
}
compile "org.springframework.boot:spring-boot-starter-jetty:0.5.0.M7"
compile "org.springframework.boot:spring-boot-starter-security:0.5.0.M7"
compile "org.springframework.boot:spring-boot-starter-websocket:0.5.0.M7"
compile "javax.inject:javax.inject:1"
compile "org.codehaus.jackson:jackson-mapper-asl:1.9.12"
compile "org.apache.httpcomponents:httpclient:4.3.1"
compile "commons-io:commons-io:2.4"
}
task wrapper (type: Wrapper) {
gradleVersion = "1.8"
}