idea导入项目Command line is too long的解决办法
报错:
1 | Error running AdminApplication.Command line is too long. Shorten the command line via JAR manifest or via a classpath file and rerun. |
昨天刚在新公司入职,准备接手项目的时候在导入过程中突然出现了这个错误。大概意思就是命令行太长了,你需要短一点。
因为自己还是哥小菜鸡,所以只剩下百度了。
修改.idea下面的workspace.xml文件
在``
1 | "dynamic.classpath": "true" |
老版本的idea则是添加
1 | <property name="dynamic.classpath" value="true" /> |