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

CreateProcess error=206, The filename or extension is too long

程序员文章站 2022-05-12 15:57:43
...

使用 Gradle 运行SpringBoot 项目时碰到的,使用的命令是 clean bootJar

解决方案:

添加 com.github.ManifestClasspath 插件到 build.gradle 中,并指定mainClass, 例如

plugins {
  id 'application'
  id "com.github.ManifestClasspath" version "0.1.0-RELEASE"
}

mainClassName='com.kay.DemoApplication'

link: https://plugins.gradle.org/plugin/com.github.ManifestClasspath