欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

【Intellij IDEA运行报Command line is too long解决方案】

程序员文章站 2022-03-24 17:28:50
...

解决Intellij IDEA运行报Command line is too long的问题

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

 

方案有如下两种

方案一:

1、打开程序的运行配置,把Shorten command line改为JAR manifestclasspath file

 

方案二:

2、找到项目下的.idea/workspace.xml,在标签<component name="PropertiesComponent">里添加一行属性:<property name="dynamic.classpath" value="true" />

<component name="PropertiesComponent">

 其它属性不改

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

</component>