1. 程式人生 > 實用技巧 >Idea執行報錯Error running 'Application': Command line is too long的解決方法

Idea執行報錯Error running 'Application': Command line is too long的解決方法

開局一個百度,內容全靠複製。

以下內容來自這兩篇文章:

Idea執行報錯Error running 'Application': Command line is too long的解決方法

SpringBoot報錯Error running 'Application': Command line is too long.Shorten command line for

重新寫這篇文章只是為了記錄這個問題及解決方法,以及防止其他文章失效。

建議有需要還是直接去原文看。

第一種方法:

https://blog.csdn.net/weixin_43689480/article/details/100983585

Idea執行報錯Error running 'Application': Command line is too long的解決方法

新專案再Idea裡面啟動的時候,有的時候報錯Error running ‘Application’: Command line is too long. Shorten command line for Application or aalso for Spring Boot default configuration,報錯資訊如下所示

怎麼解決呢,首先找到專案裡面的idea/workspace.xml檔案,然後再找到<component name="PropertiesComponent"></component >

標籤,標籤如下所示

然後再在component 標籤里加一行<property name="dynamic.classpath" value="true" />,就是變成下面這樣

重啟專案就可以了。

親自驗證,可以使用。

第二種方法:

https://blog.csdn.net/lzc4869/article/details/88912161

未用過,待考證。