使用IDEA编写java程序(或scala程序),运行main方法,报错:
Error running ‘WordCount’: Command line is too long. Shorten command line for WordCount or also for Application default configuration.
解决方法:
修改项目下 .idea\workspace.xml
右键打开项目工程目录 :
找到 .idea\workspace.xml
找到标签 , 在标签里加一行
<property name="dynamic.classpath" value="true" />
再次运行main方法,不再报Command line is too long错。