Intellij报错:Eror running 'AFrameApplication': Command line is too long.

参考文章:IntelliJ IDEA 2017.3 EAP: Configurable command line shortener and more

1 Description:

启动Spring项目时,左下角出现如图报错:

Error running ‘AFrameApplication’: Command line is too long. Shorten command line for AFrameApplication or also for Spring Boot default configuration.

在这里插入图片描述

2 Rootcause:

When the classpath gets too long, or you have many VM arguments, the program cannot be launched. The reason is that most operating systems have a command line length limitation.

我在Windows 10上遇到这个问题,显然Windows 10系统对命令行长度有限制

3 Solution

Run -> Run… Edit Configurations
Intellij报错:Eror running 'AFrameApplication': Command line is too long._第1张图片
在下拉列表中,选择JAR manifest或者classpath file

重新启动项目即可

以上

你可能感兴趣的:(Intellij,IDEA)