1. 程式人生 > >idea報錯Error running $classname: Command line is too long. Shorten command line for $classname.

idea報錯Error running $classname: Command line is too long. Shorten command line for $classname.

之所以出現這個原因是一般是因為列印的環境變數太長了,超過了限制,可以嘗試以下方案:

1.按照提示修改該類的配置,選擇jar manifest(每個報錯的類都需要注意設定,專案的.idea/workspace.xml有這個選項,可以修改預設值,這樣就不用每次更改) 

2.在專案的.idea/workspace.xml檔案中,找到 <component name="PropertiesComponent">,新增一行<property name="dynamic.classpath" value="true" />

 

3. 若還是沒有解決,