springboot项目运行报错:Command line is too long. Shorten command line for Application or also for Spring Boot default configuration
解决方案:
在项目的根目录下的.idea/workspace.xml文件中的<component name="PropertiesComponent">下添加如下代码:
<component name="PropertiesComponent">
<property name="dynamic.classpath" value="true"/>
</component>
然后再次启动项目,问题解决。
本文介绍如何通过在.idea/workspace.xml中修改`PropertiesComponent`的'dynamic.classpath'属性,来解决SpringBoot项目启动时命令过长的问题,提供了解决方案和步骤。
2724

被折叠的 条评论
为什么被折叠?



