idea运行报Error running ‘XApplication‘_ Command line is too long. Shorten command line for XApplication

2022-11-24 20:09:25 浏览数 (2)

文章目录
  • SpringBoot项目启动报错
  • 解決办法

SpringBoot项目启动报错

代码语言:javascript复制
10:54	Error running 'xxxApplication': Command line is too long. Shorten command line for xxxApplication or also for Application default configuration.

报错翻译

10:54 运行“xxxApplication”时出错:命令行太长。缩短 xxxApplication 或应用程序默认配置的命令行。

解決办法

  1. 设置程序的启动配置,把Shorten command line设置成classpath…那个选项。
  1. 如果上述操作后还是不行。找到项目工程里面的.idea/workspace.xml文件, 然后再找到
代码语言:javascript复制
<component name="PropertiesComponent"></component>

标签,在标签内添加一行

代码语言:javascript复制
<property name="dynamic.classpath" value="true" />

如下图所示:

保存后项目可以正常启动了。 ​

呜啦啦啦啦 看官喜欢的话点赞收藏或者关注一下吧

0 人点赞