在使用idea中的test运行测试类的时候,发现运行不起来,报错信息如下:
Error running ‘test’: Command line is too long. Shorten command line for test or also for Application default configuration.
这个问题只需要修改一下.idea下的workspace.xml文件,首先打开workspace文件找到<component name="PropertiesComponent">
这个标签,然后在这个标签里面添加一行<property name="dynamic.classpath" value="true" />
即可。