问题背景
今天由于业务需要,下载了一个开源项目想要在本地运行,处理完部分报错信息后,开始启动项目,启动项目然后报错,报错信息
Error running Application. Command line is too long. Shorten the command line via JAR manifest or via a classpath file and rerun.
问题处理
当看到这个错误,虽然错误原因提示很明显,但是过去不曾遇到过这样的错误提示,于是在网上搜索了一下相关处理方案,然后尝试了一下可以的。这里记录下来防止以后出现相同问题时没有处理方案。Error running Application. Command line is too long. 这个错误的大致意思就是启动命令行太长了,那么只需要设置启动参数就可以解决了。
点击【Edit Configurations】
进入项目启动参数编辑页面,点击【Modify options】
勾选【Shorten command line】
选择classpath file后点击【Apply】-【OK】
然后再重新启动项目就可以了。