Command line is too long问题解决
Idea启动项目报错:Command line is too long. Shorten command line for className or also for JUnit defaultconfiguration.
解决方法:
在该项目文件夹.idea/workspace.xml
中找到
<component name="PropertiesComponent">
...
</component>
然后在其中添加:
<property name="dynamic.classpath" value="true" />
问题得到解决。
相关解释:
该选项控制如何将classpath传递给JVM:通过命令行或通过文件。大多数操作系统都有最大的命令行限制,当它超过时,IDEA将无法运行您的应用程序。 当命令行长于32768个字符时,IDEA建议您切换到动态类路径。长类路径被写入文件,然后由应用程序启动器读取并通过系统类加载器加载。