1

https://docs.spring.io/spring-boot/docs/current/reference/html/deployment-install.htmlに従って、Spring Boot 1.3 を使用して完全に実行可能な WAR を構築しようとしています。単一のGradleプロジェクトをビルドすると、すべて正常に動作しますが、「ルート」プロジェクトとその下にいくつかのプロジェクトがあるマルチプロジェクトビルドがあり、標準の「ファット」以外のものをビルドすることはできませんWAR ファイル、提供された Jetty のランタイムなし、およびそれを実行するためのスクリプトなし。

誰もこれを行う方法を知っていますか?

私のルートプロジェクトには、次のものがあります(要約):

buildscript {
    repositories {
        mavenCentral()
    }
    ext {
        springBootVersion = '1.3.0.RELEASE'
    }
    dependencies {
        classpath "org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion"
    }
}

allprojects {
    //Put instructions for all projects
    repositories {
        mavenCentral()  // jcenter is missing spring-orm.4.1.6.RELEASE jar file so try mavenCentral first
        jcenter {
            url "http://jcenter.bintray.com/"
        }
        maven { url 'http://repo.opensourceagility.com/release' }
    }
}

subprojects {
    apply plugin: 'java'
    apply plugin: 'spring-boot'
}

そして、Webプロジェクトであり、構築しようとしているサブプロジェクトには、次のものがあります。

apply plugin: 'war'

dependencies {
    // Include related projects
    compile project(':project-model')
    compile project(':project-dynamoDB')

    // Core Spring Boot - note version is set in main build.gradle file
    compile 'org.springframework.boot:spring-boot-starter-web'

    // Remove Tomcat (included in -web) and include Jetty instead
    providedRuntime 'org.springframework.boot:spring-boot-starter-jetty'

    // Other Spring modules
    compile 'org.springframework.boot:spring-boot-starter-social-facebook'
    compile 'org.springframework.boot:spring-boot-starter-social-linkedin'
    compile 'org.springframework.social:spring-social-google:1.0.0.RELEASE'
    compile 'org.springframework.boot:spring-boot-starter-thymeleaf'
    compile 'org.springframework.boot:spring-boot-starter-security'
    compile 'org.springframework.boot:spring-boot-starter-actuator'
    compile 'org.springframework.boot:spring-boot-devtools'
    compile 'org.springframework:spring-context'
    compile 'org.springframework:spring-context-support'
}

configurations {
    providedRuntime.exclude group: 'org.springframework.boot', module:'spring-boot-starter-tomcat'
    all*.exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging' // exclude when using log4j 
}

springBoot {
    mainClass = 'rs.web.Weblication'
    executable = true   
}

bootRun {
    addResources = true
}

processResources {
    // exclude resources if they look like they're profile dependent but don't match the current env/profile
    eachFile { d ->
        if(d.name.endsWith('.xml') || d.name.endsWith('.yaml') || d.name.endsWith('.properties')) {
            //def fname = d.name.replaceFirst(~/\.[^\.]+$/, '')
            //if(fname.indexOf("-") > -1 && ! fname.endsWith("-" + environment)) {
            //  d.exclude()
            //} else {
            // replace @variables@ listed below in properties/config files
            filter(org.apache.tools.ant.filters.ReplaceTokens, tokens: [
                    activeProfiles: environment
                ])
            //}
        }
    }
}

war {
    baseName = 'project-web'
    version = '1.0.0'
    manifest {
        attributes 'Implementation-Title': baseName,
                   'Implementation-Version': version
    }
    webXml = file('src/main/resources/web.xml')
    // rename the war task which has profiles appended from warName-profile,profile2.war
    // to warName-profile.profile2.war
    classifier = environment.replaceAll(',','-')
}

しかし、それをビルドすると ( ./gradlew build、または./gradlew subprojectname:build)、すべて問題なく動作する WAR が作成されますが、実行可能な WAR は作成されません。

単一のプロジェクトで、問題なく動作しています。

4

1 に答える 1

2

ああ、まあ、テスト用のマルチプロジェクト ビルドをビルドしたところ、問題なく動作したので、明らかに上記の構成でした。

消去法をやってみたところ、問題の箇所は線でした

classifier = environment.replaceAll(',','-')

これは、名前の一部として環境変数を使用してファイルの名前を変更することを目的としています。このプロセスは、スクリプトの追加の邪魔になるようです。本当に必要な場合は、後で適用することもできます。

于 2015-12-04T13:29:19.540 に答える