[错误] Error running 'xxx项目': Command line is too long. Shorten command line for xxx or also for Spring Boot default configuration. 根据错误信息可知,指令太过长,根据提示缩短指令即可. 在IDEA中找到 Run-> Edit Configurations打开: 在 Environment-> Shorten command line 的内容配置为 JAR即可解决: 原…
idea启动测试类报错 Error running 'Test1.test': Command line is too long. Shorten command line for Test1.test or also for JUnit default configuration. 注意: 最简单的方法,就是你重新创建一个新的测试类,在里面重新写一遍测试方法,代码都可以粘贴过去. 解决方法: 1.打开本项目的.idea文件夹,找到文件夹中的workspace.xml文件 2.搜索 Proper…
跑单元测试时,报错如下: Error running 'xxx': Command line is too long. Shorten command line for xxx 解决方案: 在项目所在目录下找到.idea/workspace.xml文件,在名为 PropertiesComponent 的 component 标签里面添加 <property name="dynamic.classpath" value="true" /> 最终效果如下:…
方法1 IDEA 运行报错:Error running '***': Command line is too long 技术标签: IDEA Error running 'Test': Command line is too long. Shorten command line for Test or also for Application default configuration解决方案:点击Run–>Edit Configurations 方法2 新项目再Idea里面启动的时候,…