IDEA运行报错:Command line is too long. Shorten command line for

时间:2024-05-30 22:41:07

原因

可能是因为一个项目文件夹下面有多个程序导致打印的环境变量太长了,超过了限制

解决办法

1、按照提示修改该类的配置,选择jar manifest(每个报错的类都需要注意设置,项目的.idea/workspace.xml有这个选项,可以修改默认值,这样就不用每次更改)

IDEA运行报错:Command line is too long. Shorten command line for

2、在项目的.idea/workspace.xml文件中,找到 <component name="PropertiesComponent"> ,添加一行<property name="dynamic.classpath" value="true" />

IDEA运行报错:Command line is too long. Shorten command line for

(以上对workspace.xml的修改 均可以在idea的安装配置文件中修改,以达到对所有项目有效的目的)