-2

我尝试创建spring-boot-starter. spring-boot module我用这个 Gradle 文件创建了一个简单的文件:

plugins {
    id 'org.springframework.boot' version '2.1.3.RELEASE'
    id 'java'
}

apply plugin: 'io.spring.dependency-management'

group = 'my.domain'
version = '0.0.1-SNAPSHOT'

dependencies {
    implementation 'org.springframework.boot:spring-boot-starter'
    compileOnly 'org.projectlombok:lombok'
    annotationProcessor 'org.projectlombok:lombok'
    testImplementation 'org.springframework.boot:spring-boot-starter-test'

    annotationProcessor "org.springframework.boot:spring-boot-autoconfigure-processor"
}

还有一类:

@SpringBootApplication
public class ApiSpringBootStarterApplication {

    public static void main(String[] args) {
        SpringApplication.run(ApiSpringBootStarterApplication.class, args);
    }

}

它构建成功。但是如果我删除ApiSpringBootStarterApplication 类我会得到一个错误:

* What went wrong:
Execution failed for task ':api-spring-boot-starter:bootJar'.
> Main class name has not been configured and it could not be resolved
4

2 回答 2

0

org.springframework.boot从插件中删除。该插件旨在为您的项目构建可执行 jar。在启动器的情况下,您不需要这样做。

参考:https ://docs.spring.io/spring-boot/docs/current/gradle-plugin/reference/html/

以此类推,如果您使用 maven 和spring-boot-maven-plugin.

于 2019-04-09T08:37:05.580 回答
-2

JVM寻找主类启动应用,没有主类就无法启动应用。

为什么要删除 ApiSpringBootStarterApplication ?是你的主要课程。

于 2019-04-09T08:29:44.210 回答