Command line is too long. Shorten command line for *** or also for Spring Boot default configuration

错误信息:

Command line is too long. Shorten command line for *** or also for Spring Boot default configuration

通常会导致的后果是无法启动项目。

解决办法:

修改项目下 .idea\workspace.xml,找到标签 , 在标签里加一行

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

参考解决办法链接:https://blog.csdn.net/weixin_41235754/article/details/100514000

原文地址:https://www.cnblogs.com/youcong/p/12115983.html

时间: 2024-10-07 21:42:20

Command line is too long. Shorten command line for *** or also for Spring Boot default configuration的相关文章

【IntellJ IDEA】idea启动测试类报错Error running &#39;Test1.test&#39;: Command line is too long. Shorten command line for Test1.test or also for JUnit default configuration.

idea启动测试类报错 Error running 'Test1.test': Command line is too long. Shorten command line for Test1.test or also for JUnit default configuration. 注意: 最简单的方法,就是你重新创建一个新的测试类,在里面重新写一遍测试方法,代码都可以粘贴过去. 解决方法: 1.打开本项目的.idea文件夹,找到文件夹中的workspace.xml文件 2.搜索 Proper

IDEA运行出现Command line is too long. Shorten command line for testMLDome1 or also for Application default configuration

在.idea的workspace.xml文件的 <component name="PropertiesComponent">... </component>标签中加入 <property name="dynamic.classpath" value="true" /> 原文地址:https://www.cnblogs.com/Murcie/p/12148674.html

Command line option syntax error.type Command /? for help

电脑装思维导图的时候,报错显示"Command line option syntax error.Type Command /? for help."就查了一下,原来是系统没有C++2005,需要安装,就上网下载了一个vcredist_x86.exe,但是双击安装,仍然出现这个错误. 没办法,接着上网查吧,是什么原因呢?网上说是因为该文件安装不支持中文安装路径,然后我就把文件夹改成了英文名称的,但是双击还是出现这个错误.可能有的人用这种方法成功了吧~本着没有解决不了的问题的思想,接着奋

安装SQL Servre2000时提示“command line option syntax error! type command /? for help”

问题: 当程序正在安装ms数据访问组件时,弹出错误提示框:command line option syntax error,type command/? for help,点击确定继续:到了程序正在安装HTML帮助时,弹出标题为html help 1.32 update错误提示框:command line option syntax error,type command/? for help,点击确定继续:程序开始复制文件,复制完后弹出错误提示框:无法找到动态连接库sqlunirl.dll(sq

安装vcredist_x86,报错提示:Command line option syntax error.Type Command /?for Help

在安装loadrunner11的时候,提示缺少vc2005_sp1_with_atl_fix_redist组件,可以直接点击确定进行安装组件,或者进入loadrunner目录下lrunner\Chs\prerequisites\vc2005_sp1_redist手动安装vcredist_x86.exe,这时候出现了报错:Command line option syntax error.Type Command /?for Help 解决方案: 修改环境变量 修改完之后就可以正常安装啦 参考地址:

python: line=f.readlines() 后如何消除line中的’\n’

#!/ust/bin/env python3 f = open("name.txt")date = f.readlines()print(date)f.close() #结果:#['eray\n', 'eray\n', 'bike\n']#打印出来的带 \n ,怎么去掉\n呢? #解决方法:#1.f = open("name.txt")date = f.read().splitlines()print(date)f.close()#结果:#['eray', 'era

MyEclipse快捷键大全(command+alt+L生成局部变量;command+alt+↓ 向下复制)

存盘 Ctrl+s(肯定知道) 注释代码 Ctrl+/ 取消注释 Ctrl+\(Eclipse3已经都合并到Ctrl+/了) 代码辅助 Alt+/ 快速修复 Ctrl+1 代码格式化 Ctrl+Shift+f 整理导入 Ctrl+Shift+o 切换窗口 Ctrl+f6 <可改为ctrl+tab方便> ctrl+shift+M 导入未引用的包 ctrl+w 关闭单个窗口 F3 跳转到类.变量的声明 F11 运行上次程序 Ctrl + F11 调试上次程序 Alt + 回下一个编辑点 ctrl+

将一个文件中的内容,在另一个文件中生成. for line in f1, \n f2.write(line)

将一个文件中的内容,在另一个文件中生成. 核心语句: for line in f1: f1中的所有一行 f2.write(line)                                  # 是直接写入f1中出来的每一行,用   .write() 原文地址:https://www.cnblogs.com/jack20181017/p/9863521.html

资产项目部署中遇到的问题与解决方法

1.问题:IDEA不显示RunDashboard窗口 参考: https://jingyan.baidu.com/article/ce4366495a1df73773afd3d3.html 2.报错:Error running 'HbaseServiceApplication': Command line is too long. Shorten command line for HbaseServiceApplication or also for Spring Boot default co