idea 运行 main方法报错
Command line is too long. Shorten command line for className or also for JUnit defaultconfiguration.
解决方法:
在该项目文件夹.idea/workspace.xml中找到
<component name="PropertiesComponent">
...
</component>
然后在其中添加:
<property name="dynamic.classpath" value="true" />
问题得到解决。
IDEA中修改workspace.xml内容,保存后自动被删除
上面的方法确实是能解决,但是中间也遇到了其他困惑,就是IDEA中修改workspace.xml内容,保存后一运行程序,修改的内容就会被自动被删除。
解决办法:
就是在磁盘中找到项目根目录,然后通过文本编辑器的方式打开该配置文件,然后重新做修改,并重启项目,后来就成功了
如果不行就多试几次。
解决问题的过程很曲折,特此记录。
方法都是收集过来的,参考来源:
https://blog.csdn.net/feitianlongfei/article/details/80976953
https://blog.csdn.net/qq_41649001/article/details/109131493