欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

gradle springboot项目打Jar包

程序员文章站 2022-05-22 20:22:36
...

build.gradle:spring-boot-gradle插件、指定主类类名

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

jar {
    manifest {
        attributes 'Main-Class': 主类类名
    }
}

运行 gradle clean build