带有fatJar插件和SpringBoot应用程序的Gradle构建提供了';应用程序启动失败';

带有fatJar插件和SpringBoot应用程序的Gradle构建提供了';应用程序启动失败';,gradle,spring-boot,jar,Gradle,Spring Boot,Jar,使用Intellij启动我的应用程序时,一切正常。但是当我制作了fatJar(使用gradle插件:eu.appsatori.fatJar)并执行: java -jar myapp.jar 我得到了这样的东西: 11:41:01.224 [main] ERROR org.springframework.boot.SpringApplication - Application startup failed org.springframework.beans.factory.BeanDefinit

使用
Intellij
启动我的应用程序时,一切正常。但是当我制作了
fatJar
(使用gradle插件:
eu.appsatori.fatJar
)并执行:

java -jar myapp.jar
我得到了这样的东西:

11:41:01.224 [main] ERROR org.springframework.boot.SpringApplication - Application startup failed
org.springframework.beans.factory.BeanDefinitionStoreException: Failed to process import candidates for configuration class [my.testing.MyAppMain]; nested exception is java.lang.IllegalArgumentException: No auto configuration classes found in META-INF/spring.factories. If you are using a custom packaging, make sure that file is correct.
        at org.springframework.context.annotation.ConfigurationClassParser.processDeferredImportSelectors(ConfigurationClassParser.java:482)
        at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:184)
...
它似乎没有在
META-INF/spring.factories
中找到自动配置类

如何添加此文件?它的内容应该是什么

我有以下构建脚本:

apply plugin: "java";
apply plugin: "idea";
apply plugin: 'application'
apply plugin: 'eu.appsatori.fatjar'
apply plugin: 'org.springframework.boot'

repositories {
    mavenCentral()
}

buildscript {
    ext {
        springBootVersion = '1.4.3.RELEASE'
    }

    repositories {
        mavenCentral()
        jcenter()
    }

    dependencies {
        classpath "org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}"
        classpath "eu.appsatori:gradle-fatjar-plugin:0.3"
    }
}

sourceSets {
    main {
        java {
            srcDir 'src/main/java'
        }

        resources {
            srcDir 'src/main/resources'
        }
    }

    test {
        java {
            srcDir 'src/test/java'
        }
    }
}

fatJar {
    manifest {
        attributes("Main-Class": 'my.testing.MyAppMain')
    }

    exclude 'META-INF/*.DSA'
    exclude 'META-INF/*.SF'
    exclude 'META-INF/*.RSA'
}

dependencies {
    compile 'org.springframework.boot:spring-boot-starter-jdbc'
    runtime 'mysql:mysql-connector-java'

    testCompile 'org.springframework.boot:spring-boot-starter-test'

}
我的示例代码是:

package my.testing;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.stereotype.Component;

@SpringBootApplication
public class MyAppMain {
    private ConfigurableApplicationContext springContext;

    @Autowired
    private SimpleDao dao;

    public static void main(String[] args) throws Exception {
        MyAppMain test = new MyAppMain();
        try {
            test.init();
            test.doWhatYouGotToDo();
        } finally {
            test.stop();
        }
    }

    private void doWhatYouGotToDo() {
        System.out.println("Auto-wired dao: " + dao.hashCode());
        System.out.println("Auto-wired jdbcTemplate: " + dao.jdbcTemplate.hashCode());
    }

    private void init() throws Exception {
        springContext = SpringApplication.run(MyAppMain.class);
        springContext.getAutowireCapableBeanFactory().autowireBean(this);
    }

    private void stop() throws Exception {
        springContext.close();
    }
}

@Component
class SimpleDao {

    @Autowired
    JdbcTemplate jdbcTemplate;
}
application.properties
文件:

spring.datasource.driver-class-name = com.mysql.jdbc.Driver
spring.datasource.url = jdbc:mysql://localhost:3306/some_db?useSSL=false&serverTimezone=UTC
spring.datasource.username = some_user
spring.datasource.password = some_pass
注意:此问题基于 所有答案都是指使用
Maven
的建筑。请仅在此处填写与
Gradle
相关的答案

gradle clean build
gradle bootRepackage
结果:

这是我的build.gradle文件:


不要使用
fatjar
插件。。。Spring Boot已经创建了一个胖罐子。。。你现在有两种相互竞争的机制……那么,如果没有这个插件,我怎么能构建成一个胖罐子呢?即,如何在IntelliJ之外成功运行上述应用程序?好的。Gradle
bootRepackage
task完成了它。谢谢你可以给我一个答案让我接受。。。