idea运行junit测试程序报错command line is too long. shorten command line for ...
解决方法
在项目根目录.idea/workspace.xml文件中添加一行代码
<component name="PropertiesComponent">
...
<property name="dynamic.classpath" value="true" />
</component>
再启动测试类看看,见证神奇的时刻。
idea运行junit测试程序报错command line is too long. shorten command line for
解决方法
在项目根目录.idea/workspace.xml文件中添加一行代码
<component name="PropertiesComponent">
...
<property name="dynamic.classpath" value="true" />
</component>
再启动测试类看看,见证神奇的时刻。