2021.11.18
在idea启动新项目时,遇到弹出框提示错误
Error?running ‘xxx Application’:Command line is too lang. Shorten command line for Application or aalso for Spring Boot default configuration
报错原因:springboot项目启动命令过长
解决方案:
第一种方法(亲测有效)
step1:找到项目里面的idea/workspace.xml文件,然后再找到<component name="PropertiesComponent"> </component > 标签,如下所示
?step2:?在component 标签里加一行?<property name="dynamic.classpath" value="true" /> ,如下所示
?重新启动项目就OK了。
参考自Idea运行报错Error running 'Application': Command line is too long的解决方法 - _ME - 博客园编辑日志: 2020/12/25 10:56 第二种方法测试可用 2021/01/08 10:21 使用第二种方法遇到的问题 开局一个百度,内容全靠复制。 以下内容来自这两篇文章: Idea运行报错Ehttps://www.cnblogs.com/chongcheng/p/14086324.html
?
|