首页 > 其他分享 >IDEA 启动报错:Error running 'DemoApplication': Command line is too long. Shorten command line

IDEA 启动报错:Error running 'DemoApplication': Command line is too long. Shorten command line

时间:2023-07-18 11:25:01浏览次数:30  
标签:DemoApplication Shorten IDEA long 报错 line

 

IDEA启动报错:

Error running 'DemoApplication': Command line is too long. Shorten command line for DemoApplication or also for Spring Boot default configuration.

 

修改

 

打开

 修改成

 

 

然后在重新启动即可

标签:DemoApplication,Shorten,IDEA,long,报错,line
From: https://www.cnblogs.com/pxblog/p/17562357.html

相关文章

  • [论文笔记] Line-CNN: End-to-End Traffic Line Detection With Line Proposal Unit
    IEEETITS2019YangJianlastupdate:2023/07/17简介作者受Faster-RCNN启发,提出Line-CNN,提出了一种新颖的车道线Anchor的表示方法,解决了车道线检测中表征的难点,实现了端到端的车道线检测.车道线是一条曲线,所以无法使用常规检测中矩形bbox作为Anchor,为了用Anchor来......
  • hive kerberos beeline 指定用户名
    使用HiveKerberosBeeline指定用户名的流程在这篇文章中,我将向你解释如何使用HiveKerberosBeeline指定用户名的流程。我们将使用一些必要的代码来完成这个任务。整体流程下面是使用HiveKerberosBeeline指定用户名的整体流程,我们将使用以下步骤来实现。步骤描述1.......
  • Baseline实验环境准备
    实验Baseline环境搭建准备为了尽快地写成论文初稿,首先需要把实验完成。先将待做实验按几个方面分类:数据集GLUE数据集任务SST模型TransformerBert评价指标BLEUBERTSimilarityBitRate对于GLUE数据集以及其对应的相关任务,我还有点懵逼,在网上也找不到Tra......
  • 当在js文件里引入pinia时报错:Uncaught Error: []: getActivePinia was called with no
    1、问题背景我在一个js文件里需要使用pinia去修改状态存储里的内容,但是在引入pinia的时候,比如contstore=useStore()时发现报错:getActivePiniawascalledwithnoactivePinia.说是实例在文件中使用的时候,pinia实例没有被挂载。发生错误的原因是因为我在js......
  • Github:提交代码到Github上报错Git: fatal unable to access "***/: Failed to connect
    在国内网环境,使用VScode提交代码到Github上时,因为国的防火墙问题,经常会报错:Git:fatalunabletoaccess"https://github.com/***/***.io.git/:Failedtoconnecttogithub.comport443after21074ms:Couldn'tconnecttoserver 可能原因:出现该错误是因为使用了proxy......
  • idea报错 java: You aren't using a compiler supported by lombok, so lombok will
    转‘’:idea较新版本识别不了lombok生成的方法 在这增加参数:-Djps.track.ap.dependencies=false  ......
  • sam复现尝试过程中报错ModuleNotFoundError: No module named ‘_lzma‘
    项目场景:系统:centos7python:3.8.16问题描述部署完python后将我们在windows环境中的scrapy文件传入我们的centos中后进行运行报错:错误如下:fromlzmaimportLZMAFileFile"/usr/local/lib/python3.6/lzma.py",line27,in<module>from_lzmaimport*Module......
  • mysql报错:You must reset your password using ALTER USER statement before executin
    mysql报错:YoumustresetyourpasswordusingALTERUSERstatementbeforeexecutingthisstatement.新安装mysql后,登录后,执行任何命令都会报错:YoumustresetyourpasswordusingALTERUSERstatementbeforeexecutingthisstatement. 【解决办法】MySQL版本5.7.6版本......
  • sqlsever ip连接 navicat 连报错 sql server 设sa密码
    一、sqlserverip连接1、按下windows+R,弹出运行框。2、在弹出框中输入cmd,按下enter键。3、在dos命令窗口输入compmgmt.msc命令,按下enter键。将服务中:SQLServer(mssqlserver)、SqlServerBrowser启动 4、在计算机管理窗口-》展开服务和应用程序-》展开SQLServer配置管理......
  • Scrapy在pipeline中集成mongodb
    settings.py中设置配置项MONGODB_HOST="127.0.0.1"MONGODB_PORT=27017MONGODB_DB_NAME="bang123"pipelines.py:fromscrapy.pipelines.imagesimportImagesPipelinefromitemadapterimportis_item,ItemAdapterclassBang123Pipeline:......