IDEA 报错:Command line is too long

版权声明:本文为博主原创文章,欢迎转载,转载请注明出处。觉得此文有用的,不嫌麻烦的,就留个言呐,或者点个赞呐,要是嫌麻烦呢,也麻烦点个赞嘛 https://blog.csdn.net/qq_40147863/article/details/88967261

IDEA 报错:Command line is too long

Error runnig :
Command line is too long.
*

解决方法:

(1)在项目 /.idea/workspace.xml 文件中找到 name 为 PropertiesComponent 的 <component> 标签 。

(2)添加一行代码,结构如下:

<component name="PropertiesComponent">
  ...
 <property name="dynamic.classpath" value="true" />
</component>

猜你喜欢

转载自blog.csdn.net/qq_40147863/article/details/88967261