【异常】SpringBoot报错Command line is too long.Shorten command line for Application or also for Applicatio

本文目录

一、报错信息

二、错误原因

三、解决方案

方案一:修改配置

方案二:修改工作空间


一、报错信息

Error running 'SpringBootMainApplication':

Command line is too long.Shorten command line for SpringBootMainApplication or also for Application default configuration.

二、错误原因

springboot项目启动命令过长。

三、解决方案

解决方法有两种,正如报错信息截图所示,缩短命令行或者改为应用程序默认配置。

方案一:修改配置

点击项目启动配置项 --> Enviroment --> Shorten command line 选项 --> 选择 classpath file 或JAR manifest 选项 --> 重新启动工程运行即可。

【异常】SpringBoot报错Command line is too long.Shorten command line for Application or also for Applicatio_第1张图片

【异常】SpringBoot报错Command line is too long.Shorten command line for Application or also for Applicatio_第2张图片

 方案二:修改工作空间

修改工作空间,路径为:.idea --> workspace.xml

找到标签 。在标签里加一行:

【异常】SpringBoot报错Command line is too long.Shorten command line for Application or also for Applicatio_第3张图片

 

 

 

 

完结!

你可能感兴趣的:(异常解决方案,java,spring,spring,boot)