Idea运行报错Error running ‘Application‘: Command line is too long的解决方法

1 问题

新项目再Idea里面启动的时候,有的时候报错Error running ‘Application’: Command line is too long. Shorten command line for Application or aalso for Spring Boot default configuration,报错信息如下所示:
在这里插入图片描述

2 解决问题

首先找到项目里面的idea/workspace.xml文件,然后再找到<component name="PropertiesComponent"></component >标签,标签如下所示:

在这里插入图片描述

然后再在component 标签里加一行 <property name="dynamic.classpath" value="true" />,就是变成下面这样:

在这里插入图片描述

这样在启动项目,就不会报错了。

有其他交流的想法,可以加我创建的Q群:820080257

Guess you like

Origin blog.csdn.net/weixin_46017976/article/details/117128369