开局一个百度,内容全靠复制。
以下内容来自这两篇文章:
Idea运行报错Error running ‘Application‘: Command line is too long的解决方法
SpringBoot报错Error running ‘Application‘: Command line is too long.Shorten command line for
重新写这篇文章只是为了记录这个问题及解决方法,以及防止其他文章失效。
建议有需要还是直接去原文看。
第一种方法:
https://blog.csdn.net/weixin_43689480/article/details/100983585
Idea运行报错Error running ‘Application‘: Command line is too long的解决方法
新项目再Idea里面启动的时候,有的时候报错Error running ‘Application’: Command line is too long. Shorten command line for Application or aalso for Spring Boot default configuration,报错信息如下所示
怎么解决呢,首先找到项目里面的idea/workspace.xml文件,然后再找到<component name="PropertiesComponent"></component >
标签,标签如下所示
然后再在component 标签里加一行 <property name="dynamic.classpath" value="true" />
,就是变成下面这样
重启项目就可以了。
亲自验证,可以使用。
第二种方法:
https://blog.csdn.net/lzc4869/article/details/88912161
未用过,待考证。
Idea运行报错Error running 'Application': Command line is too long的解决方法