码迷,mamicode.com
首页 > 其他好文 > 详细

IDEA常见错误

时间:2020-04-26 20:43:06      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:dynamic   types   services   问题解决   ring   stat   too long   component   file   

1:Intellij IDEA运行报Command line is too long解法

报错内容:

Error running ‘ServiceStarter‘: Command line is too long. Shorten command line for ServiceStarter or also for Application default configuration.

 

解法:

修改项目下 .idea\workspace.xml,找到标签 <component name="PropertiesComponent"> , 在标签里加一行  

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

2:Idea开启Run DashBoard配置

找到.idea文件下的workspace.xml,并找到RunDashboard

<component name="RunDashboard">
   <option name="ruleStates">
     <list>
       <RuleState>
         <option name="name" value="ConfigurationTypeDashboardGroupingRule" />
       </RuleState>
       <RuleState>
         <option name="name" value="StatusDashboardGroupingRule" />
       </RuleState>
     </list>
   </option>
</component>

加入如下配置:

<option name="configurationTypes">
  <set>
    <option value="SpringBootApplicationConfigurationType" />
  </set>
</option>

3、错误:找不到或无法加载主类

猜测:1,未能成功编译;

            尝试:菜单---》Build---》Rebuild Prodject  

            结果:启动服务仍然报同样的错误

          2,缓存问题;

            尝试:菜单---》File---》Invalidate Caches/Restart 选择Invalidate and Restart 或者 只是Invalidate,清除掉缓存,然后Rebuild Project

            结果:启动成功,问题解决

 

设置一下file-->project structure-->Module:
paths里面的编译路径Complier output:

IDEA常见错误

标签:dynamic   types   services   问题解决   ring   stat   too long   component   file   

原文地址:https://www.cnblogs.com/g120/p/12781952.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!