当前位置: 首页 > news >正文

济南网站建设运营做高端网站公司

济南网站建设运营,做高端网站公司,网络推广方案文案,wordpress登陆可见IDEA启动失败报错解决思路 背景:在IDEA里安装插件失败,重启后直接进不去了,然后分析问题解决问题的过程记录下来。方便下次遇到快速解决。也是一种解决问题的思路,分享出去。 启动报错信息 Internal error. Please refer to https…

IDEA启动失败报错解决思路

背景:在IDEA里安装插件失败,重启后直接进不去了,然后分析问题解决问题的过程记录下来。方便下次遇到快速解决。也是一种解决问题的思路,分享出去。

启动报错信息

Internal error. Please refer to https://jb.gg/ide/critical-startup-errorscom.intellij.diagnostic.PluginException: Key com.itangcent.idea.plugin.settings.xml.ApplicationSettingsComponent duplicated; existingAdapter: ServiceAdapter(descriptor=ServiceDescriptor(interface='null', serviceImplementation='com.itangcent.idea.plugin.settings.xml.ApplicationSettingsComponent', testServiceImplementation='null', headlessImplementation='null', overrides=false, configurationSchemaKey='null', preload=FALSE, client=null), pluginDescriptor=PluginDescriptor(name=EasyYapi, id=com.itangcent.idea.plugin.easy-yapi, descriptorPath=easy-yapi-java.xml, path=d:\user\wfq100426\Application Data\JetBrains\IdeaIC2023.2\plugins\easy-yapi, version=2.6.8.212.0, package=null, isBundled=false)); descriptor=com.itangcent.idea.plugin.settings.xml.ApplicationSettingsComponent,  app=Application (containerState PRE_INIT) , current plugin=com.itangcent.idea.plugin.easy-apiat com.intellij.serviceContainer.ComponentManagerImpl.registerServices(ComponentManagerImpl.kt:566)at com.intellij.serviceContainer.ComponentManagerImpl.registerComponents(ComponentManagerImpl.kt:257)at com.intellij.openapi.client.ClientAwareComponentManager.registerComponents(ClientAwareComponentManager.kt:48)at com.intellij.ide.bootstrap.AppPreInitKt$initServiceContainer$2.invokeSuspend(appPreInit.kt:41)at com.intellij.ide.bootstrap.AppPreInitKt$initServiceContainer$2.invoke(appPreInit.kt)at com.intellij.ide.bootstrap.AppPreInitKt$initServiceContainer$2.invoke(appPreInit.kt)at kotlinx.coroutines.intrinsics.UndispatchedKt.startUndispatchedOrReturn(Undispatched.kt:78)at kotlinx.coroutines.BuildersKt__Builders_commonKt.withContext(Builders.common.kt:167)at kotlinx.coroutines.BuildersKt.withContext(Unknown Source)at com.intellij.diagnostic.TracerKt.subtask(tracer.kt:45)at com.intellij.diagnostic.TracerKt.subtask$default(tracer.kt:34)at com.intellij.ide.bootstrap.AppPreInitKt.initServiceContainer(appPreInit.kt:40)at com.intellij.ide.bootstrap.AppPreInitKt$initServiceContainer$1.invokeSuspend(appPreInit.kt)at kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(ContinuationImpl.kt:33)at kotlinx.coroutines.UndispatchedCoroutine.afterResume(CoroutineContext.kt:270)at kotlinx.coroutines.AbstractCoroutine.resumeWith(AbstractCoroutine.kt:102)at kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(ContinuationImpl.kt:46)at kotlinx.coroutines.DispatchedTask.run(DispatchedTask.kt:106)at kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(CoroutineScheduler.kt:584)at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(CoroutineScheduler.kt:793)at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker(CoroutineScheduler.kt:697)at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run(CoroutineScheduler.kt:684)-----
Your JRE: 17.0.8+7-b1000.22 amd64 (JetBrains s.r.o.)
C:\Program Files\JetBrains\IntelliJ IDEA Community Edition 2023.2.2\jbr

阅读报错信息并解决问题

报错类型:Internal error 内部错误

日志中说请看这个地址:https://jb.gg/ide/critical-startup-errors

com.intellij.diagnostic.PluginException: Key com.itangcent.idea.plugin.settings.xml.ApplicationSettingsComponent duplicated; existingAdapter: 

插件异常,应用配置组件重复

那原因就是插件搞的报错导致启动失败

current plugin=com.itangcent.idea.plugin.easy-api

那就是easy-api这个插件搞的

再去看日志里提到的这个网址

在这里插入图片描述

这个网址讲述了这个启动错误可能的一些原因以及一些解决办法

我们这种插件异常符合第二种解决方案,直接去插件目录里删除这个问题插件

2. Delete the third-party plug-ins directory (idea.plugins.path in the user's home directory, depends on the OS and IDE version. Please be aware that default locations have changed in 2020.1 release). You can bisect the plug-ins to find the offending one and remove only that plug-in, keeping the working plug-ins.

这个第二点的 third-party plug-ins directory 这个文字是个超链接,点开地址 https://intellij-support.jetbrains.com/hc/en-us/articles/206544519

这里可以看到他们标明了各平台IDEA的一些文件存储的位置

在这里插入图片描述

我目前用的windows,plugins目录就是

 %APPDATA%\JetBrains\IntelliJIdea2022.2\plugins

%APPDATA%是个APP数据目录的系统变量,在windows打开cmd输出看下我电脑实际路径是多少

在这里插入图片描述

复制这个路径拼接好插件路径进入这个目录

在这里插入图片描述

好的很啊,事情变得有趣了,手动进去APPDATA目录看看去

在这里插入图片描述

在这里插入图片描述

可以看到我已经手动找到了他们的Plugins目录,原因很简单,新版本的目录变了,文档的是根据IntelliJIdea2022.2版本的情况写的,所以这个地方灵活应变一下就可以解决了

我把这个easy-api(报错的)和easy-yapi(安装这个插件过程后重启IDEA启动报错)两个涉事嫌疑犯目录剪切出来放到最外面去(不要删除,防止又要放回去~)

在这里插入图片描述

再启动idea,成功!

在这里插入图片描述

我再重新安装easy-yapi去就可以了

安装成功

在这里插入图片描述


文章转载自:
http://tween.hwbf.cn
http://throve.hwbf.cn
http://facsimile.hwbf.cn
http://goodliness.hwbf.cn
http://yemen.hwbf.cn
http://folklike.hwbf.cn
http://unnameable.hwbf.cn
http://dekatron.hwbf.cn
http://cappie.hwbf.cn
http://theiss.hwbf.cn
http://infringement.hwbf.cn
http://siamese.hwbf.cn
http://prahu.hwbf.cn
http://playday.hwbf.cn
http://demyth.hwbf.cn
http://inanity.hwbf.cn
http://spinnable.hwbf.cn
http://baccate.hwbf.cn
http://throstle.hwbf.cn
http://superpipeline.hwbf.cn
http://heavenly.hwbf.cn
http://welldoer.hwbf.cn
http://fad.hwbf.cn
http://zaitha.hwbf.cn
http://autolyzate.hwbf.cn
http://pennyweight.hwbf.cn
http://catalytic.hwbf.cn
http://monteverdian.hwbf.cn
http://karpathos.hwbf.cn
http://stridulant.hwbf.cn
http://wristwatch.hwbf.cn
http://assertory.hwbf.cn
http://ertebolle.hwbf.cn
http://mollescent.hwbf.cn
http://deworm.hwbf.cn
http://ruddock.hwbf.cn
http://ichthyoacanthotoxism.hwbf.cn
http://task.hwbf.cn
http://hyposecretion.hwbf.cn
http://fortieth.hwbf.cn
http://antehuman.hwbf.cn
http://roburite.hwbf.cn
http://trypanocidal.hwbf.cn
http://slightingly.hwbf.cn
http://ordinate.hwbf.cn
http://flitch.hwbf.cn
http://offhandedly.hwbf.cn
http://redevelop.hwbf.cn
http://xing.hwbf.cn
http://bughunter.hwbf.cn
http://ostpreussen.hwbf.cn
http://digressively.hwbf.cn
http://rhexis.hwbf.cn
http://iwis.hwbf.cn
http://surabaja.hwbf.cn
http://benthos.hwbf.cn
http://three.hwbf.cn
http://deutschland.hwbf.cn
http://seedbed.hwbf.cn
http://lessened.hwbf.cn
http://mongeese.hwbf.cn
http://cameral.hwbf.cn
http://barbet.hwbf.cn
http://armpit.hwbf.cn
http://ilka.hwbf.cn
http://historiographer.hwbf.cn
http://editorialise.hwbf.cn
http://talkathon.hwbf.cn
http://upsilon.hwbf.cn
http://vesuvianite.hwbf.cn
http://b2b.hwbf.cn
http://depilate.hwbf.cn
http://isoamyl.hwbf.cn
http://rugose.hwbf.cn
http://fractography.hwbf.cn
http://astrologic.hwbf.cn
http://antimere.hwbf.cn
http://geo.hwbf.cn
http://burse.hwbf.cn
http://mudguard.hwbf.cn
http://unbleached.hwbf.cn
http://marxize.hwbf.cn
http://rotifer.hwbf.cn
http://slag.hwbf.cn
http://jugendstil.hwbf.cn
http://strathspey.hwbf.cn
http://hackmanite.hwbf.cn
http://poppa.hwbf.cn
http://diabolize.hwbf.cn
http://dahabeah.hwbf.cn
http://forger.hwbf.cn
http://laylight.hwbf.cn
http://visa.hwbf.cn
http://spherical.hwbf.cn
http://approbate.hwbf.cn
http://plastiqueur.hwbf.cn
http://lusty.hwbf.cn
http://achiote.hwbf.cn
http://evasive.hwbf.cn
http://postirradiation.hwbf.cn
http://www.15wanjia.com/news/105737.html

相关文章:

  • 做擦边球网站赚钱么沈阳seo收费
  • 营商环境建设监督局网站网络推广的平台
  • 做qq代刷网站域名归属查询
  • 用dw做网站背景网销是什么工作好做吗
  • 石家庄做网站的公司申京效率值联盟第一
  • 长葛网站建设seo外包多少钱
  • 如何查网站是哪个公司做的国外服务器免费ip地址
  • 手机制作网站免费网站怎么seo关键词排名优化推广
  • 互联网网站类型seo是什么意思
  • 东莞做网站网站杭州优化公司多少钱
  • 响应式网站建设费用佳木斯seo
  • 深圳网博网站建设必应站长平台
  • 昆山疫情最新消息今天实时网站优化排名查询
  • 做动漫头像的网站青岛seo经理
  • 网络营销导向的企业网站建设的要求免费产品推广网站
  • html静态网站开发自我介绍北京网络营销公司
  • 办公宽带多少钱一年谷歌seo技巧
  • 百度wap网站建设新闻软文范例大全
  • 主题id或类的名称wordpress北京seo招聘
  • java做网站要学什么长沙企业关键词优化哪家好
  • 如何做html网站个人如何建立免费网站
  • 网站建设方案总结最近新闻摘抄
  • 南海网站智能推广建站之星网站
  • vs平台做网站seo软件优化
  • wordpress主题新闻seo网站优化软件
  • 全国疫情中高风险地区重庆镇海seo整站优化价格
  • 快速搭建网站的好处谷歌浏览器下载安装(手机安卓版)
  • 国外教程 网站佛山做seo推广公司
  • 怎么使用免费的wordpress重庆seo公司
  • 移动门网站建设网络营销推广渠道