在.idea文件夹中,更改workspace.xml文件 加这段语句: <property name="dynamic.classpath" value="true" /> 到: <component name="PropertiesComponent"> . . . </component> 例:在里面加上灰色的代码. <component name="PropertiesComponent&…
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" /> 最终效果如下:…
生命太短暂,不要去做一些根本没有人想要的东西.本文已被 https://www.yourbatman.cn 收录,里面一并有Spring技术栈.MyBatis.JVM.中间件等小而美的专栏供以免费学习.关注公众号[BAT的乌托邦]逐个击破,深入掌握,拒绝浅尝辄止. 目录 前言 版本约定 正文 控制台首行路径 首行路径内容 为何启动抛错Command line is too long 原因分析 IDEA老版本方案 IDEA新版本方案:命令行缩短器 jar manifest方式 classpath…
找到 .idea\workspace.xml: 找到<component name="PropertiesComponent">,在里面添加<property name="dynamic.classpath" value="true" />即可 今天发现有的时候不好使,有第二种方法: 点击项目启动配置项 --> Enviroment --> Shorten command line 选项 --> 选择 c…
Command line is too long 打印的变量太长了,超过了限制,这都会报错...我只想知道idea基于什么原理会报这个错... 解决 1.按照提示修改该类的配置,选择jar manifest 2.在项目的.idea/workspace.xml文件中,找到 <component name="PropertiesComponent">,添加一行<property name="dynamic.classpath" value="…
在.idea 文件夹中打开workspace.xml文件找到<component name="PropertiesComponent">,在标签里加一行  <property name="dynamic.classpath" value="true" />…
在workspace.xml 在标签<component name="PropertiesComponent">里 添加<property name="dynamic.classpath" value="true" />…
解决办法:在.idea文件夹下面的workspace.xml中的 <component name="PropertiesComponent">标签下面添加: <property name="dynamic.classpath" value="true" />即可…
在idea workspace里 <component name="PropertiesComponent">标签下加入 <property name="dynamic.classpath" value="true" />就可以了…