Spring Boot Intellij 執行應用的時候 Command line is too long. Shorten command line for 錯誤

huyuchengus發表於2020-12-08

提示的錯誤資訊如下:

*Command line is too long*. Shorten *command line* for

 

spring-app-01

 

 

解決辦法

有下面 2 個方法都可以解決這個問題。

修改應用

首先需要選擇 Application,然後選擇編輯。

spring-app-02

然後通過上面選擇 JAR 的配置。

 

spring-app-03

 

 

修改 workspace.xml

然後修改 workspace.xml 檔案,針對 PropertiesComponent 元件,新增下面的引數:

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

 

spring-app-04

 

然後重新啟動後就可以解決這個問題了。

https://www.ossez.com/t/spring-boot-intellij-command-line-is-too-long-shorten-command-line-for/763

相關文章