BUG处理笔记
序言
记录开发过程遇到比较坑的BUG,避免下次遇到相同BUG还要重新找原因
2024年06月19日 @Regulus
# 1. 软件错误
# IDEA运行时报错 Command line is too long
报错如下:
Error running RzfzAnswerTimesServiceImpl. Command line is too long. Shorten the command line via JAR manifest or via a classpath file and rerun.
报错截图:
报错原因:
启动命令过长
解决方案一:
- 找到项目的.idea/workspace.xml文件
- 找到
<component name="PropertiesComponent">
在最后一行添加 "dynamic.classpath": "true"
解决方案二:
打开Edit Configurations
点击Modify options设置,勾选Shorten command line
3.在Edit Configurations界面下方新增的Shorten command line选项中选择JAR manifest或classpath file然后 Apply,OK 即可
上次更新: 2024/06/19, 16:49:03