IDEA 启动出现问题:Error running,Command line is too long. Shorten command line解决方案

运行springboot项目的时候,出现报错,报错信息如下:
Error running OrderServiceBoot. Command line is too long. Shorten the command line via JAR manifest or via a classpath file and rerun.


报错原因:
springboot项目启动命令过长

 

解决办法
解决方法有两种,

方案一:修改配置
点击项目启动配置项 --> Enviroment --> Shorten command line 选项 --> 选择 classpath file 或JAR manifest 选项 --> 重新启动工程运行即可。

 


方案二:修改工作空间
修改工作空间,路径为:.idea --> workspace.xml

 

 

找到标签 :<component name="PropertiesComponent">

在标签下加一行:

<property name="dynamic.classpath" value="true" />