編輯日志:
2020/12/25 10:56 第二種方法測試可用
2021/01/08 10:21 使用第二種方法遇到的問題
開局一個百度,內容全靠復制。
以下內容來自這兩篇文章:
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
注意,在使用jar manifest方式,出現無法進入斷點調試的問題。改回成第一種方法后正常。