无法从命令行运行springboot jar

时间:2018-12-20 11:43:18

标签: spring-boot gradle

我的要求是在独立的tomcat可执行文件中构建spring boot jar。我无法从命令行运行jar。

我正在使用gradle

buildscript {
    ext {
        springBootVersion = '1.4.0.RELEASE'
    }
    repositories {
        mavenCentral()
    }
    dependencies {

        classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
    }
}

apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'spring-boot'

group = 'com.test'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = 1.8

repositories {
    mavenCentral()
}



dependencies {
    compile project(':testProject')
    implementation('org.springframework.boot:spring-boot-starter-web')

    testImplementation('org.springframework.boot:spring-boot-starter-test')


}
configurations {
    all*.exclude module: 'spring-boot-starter-logging'
}
jar {
    manifest {
        attributes 'Implementation-Title': 'SpringAppApplication',
                   'Implementation-Version': version
    }

}

运行java -jar target/SpringAppApplication-0.0.1-SNAPSHOT.jar 我收到错误无效或损坏的jarfile SpringApp-0.0.1-SNAPSHOT.jar 尝试也给出完整的路径。

0 个答案:

没有答案