Command line is too long. Shorten command line for AssetAlarmApplication or also for Spring Boot default configuration.
这是一个command命令:调用java.exe程序启动一个java进程的命令。
实际第一行的command命令可能出现不可控长度。
到IDEA一共提供了三种命令行缩短器供你选择:
1. none。这是默认选项。IDE不会缩短长类路径。如果命令行超出操作系统限制,则IDEA将无法运行您的应用程序
2. jar manifest。IDE通过临时classpath.jar传递长类路径。原始类路径在MANIFEST.MF中定义为classpath.jar中的类路径属性
3. classpath file。IDE将把长类路径写入文本文件
选择第二种或第三种可解决问题,具体问题详解可查看
YourBatman 的文章: https://zhuanlan.zhihu.com/p/161442090