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