热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

尽管存在插件错误,如何启动IntelliJIDEA-HowtostartIntelliJIDEAdespiteofaplug-inerror

IhaveaproblemwithmyIntelliJidea9IDE.IinstalledtheLaClojureplugin(http:plugins.inte

I have a problem with my IntelliJ idea 9 IDE. I installed the La Clojure plugin (http://plugins.intellij.net/plugin/?id=4050) and the IDE needed to restart. Now I get the following error on startup and it won't let me continue working:

我的IntelliJ idea 9 IDE有问题。我安装了La Clojure插件(http://plugins.intellij.net/plugin/?id=4050)和重启所需的IDE。现在我在启动时遇到以下错误,它不会让我继续工作:

java.lang.AssertionError: Source file C:\Users\foo\.IntelliJIdea90\system\plugins\org.intellij.clojure_8192.zip does not exist for action unzip[C:\Users\foo\.IntelliJIdea90\system\plugins\org.intellij.clojure_8192.zip, C:\Users\foo\.IntelliJIdea90\config\plugins]
    at com.intellij.openapi.diagnostic.DefaultLogger.error(DefaultLogger.java:49)
    at com.intellij.openapi.diagnostic.Logger.error(Logger.java:48)
    at com.intellij.ide.startup.StartupActionScriptManager$UnzipCommand.execute(StartupActionScriptManager.java:189)
    at com.intellij.ide.startup.StartupActionScriptManager.executeActionScript(StartupActionScriptManager.java:49)
    at com.intellij.ide.ClassloaderUtil.initClassloader(ClassloaderUtil.java:123)
    at com.intellij.ide.Bootstrap.main(Bootstrap.java:39)
    at com.intellij.ide.Bootstrap.main(Bootstrap.java:35)
    at com.intellij.idea.Main.main(Main.java:54)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.exe4j.runtime.LauncherEngine.launch(Unknown Source)
    at com.exe4j.runtime.WinLauncher.main(Unknown Source)

When I couldn't find the zip archive in the specified folder, I manually dropped it in and the IDE correctly extracted it to the config/plugins folder and deleted the zip file from the system/plugins folder. Nevertheless, it didn't solve my problem, the error still exists. Is there a way to start IntelliJ idea disabling the plugin?

当我在指定的文件夹中找不到zip存档时,我手动将其删除,IDE正确地将其解压缩到config / plugins文件夹,并从system / plugins文件夹中删除了zip文件。然而,它没有解决我的问题,错误仍然存​​在。有没有办法启动IntelliJ想法禁用该插件?

Thanks in advance, Alex

先谢谢你,Alex

3 个解决方案

#1


1  

The problem is caused by a known bug which is already fixed. You can find more details in the issue comments.

问题是由已知修复的已知错误引起的。您可以在问题评论中找到更多详细信息。

#2


6  

I just had a similar problem, so I thought I'd post the answer:

我刚遇到类似的问题,所以我想我会发布答案:

in your intellij config directory (for intellij 11 & linux this is /home/YOURUSERNAME/.IdeaIC11/config)

在你的intellij配置目录中(对于intellij 11和linux,这是/home/YOURUSERNAME/.IdeaIC11/config)

there is a txt file called "disabled_plugins.txt"

有一个名为“disabled_plugins.txt”的txt文件

If there isn't, you can create one.

如果没有,您可以创建一个。

Just add your plugin to this list and it will not load on startup. (Thus avoiding exceptions and problems with malfunctioning plugins that prevent IDE from starting)

只需将您的插件添加到此列表中,它就不会在启动时加载。 (从而避免因阻止IDE启动而导致插件出现故障的异常和问题)

I'm posting this for future reference.

我发布这个以供将来参考。

EDIT: Here's my current "disabled_plugins.txt" file for inspiration purposes:

编辑:这是我目前的“disabled_plugins.txt”文件,用于启发目的:

ClearcasePlugin
StrutsAssistant
com.intellij.seam.pageflow
com.intellij.velocity
com.intellij.gwt
SourceSafe
Git4Idea
TFS
com.intellij.spring.webflow
CloudBees
com.intellij.spring.roo
com.intellij.spring.integration
com.intellij.spring.batch
com.intellij.spring
org.coffeescript
com.intellij.play
com.intellij.aspectj
GlassFish
com.intellij.appengine
com.intellij.spring.ws
org.intellij.grails
com.intellij.spring.osgi
com.intellij.aop
Weblogic
Resin
com.intellij.seam
com.intellij.tapestry
com.intellij.javaee.view
CloudFoundry
com.intellij.spring.websocket
CVS
com.intellij.dmserver
com.intellij.vaadin
OpenShift
com.intellij.spring.security
CFML Support
JSR45Plugin
PerforceDirectPlugin
com.intellij.struts2
Geronimo
WebSphere
Heroku
com.intellij.seam.pages
com.intellij.freemarker
com.intellij.spring.data
com.intellij.spring.mvc
org.jetbrains.plugins.github
com.intellij.spring.boot

#3


1  

I could manage to solve my problem. In the system/plugins folder is a file action.script. I savely stored it in another folder and deleted it from the plugins directory. Afterwards idea started without further problems. La clojure runs without problems as well.

我可以设法解决我的问题。在system / plugins文件夹中是一个文件action.script。我将它存储在另一个文件夹中并将其从plugins目录中删除。之后的想法开始没有进一步的问题。 La clojure也没有问题。


推荐阅读
  • 本文介绍了在Linux下安装Perl的步骤,并提供了一个简单的Perl程序示例。同时,还展示了运行该程序的结果。 ... [详细]
  • 本文介绍了Web学习历程记录中关于Tomcat的基本概念和配置。首先解释了Web静态Web资源和动态Web资源的概念,以及C/S架构和B/S架构的区别。然后介绍了常见的Web服务器,包括Weblogic、WebSphere和Tomcat。接着详细讲解了Tomcat的虚拟主机、web应用和虚拟路径映射的概念和配置过程。最后简要介绍了http协议的作用。本文内容详实,适合初学者了解Tomcat的基础知识。 ... [详细]
  • 本文介绍了如何使用C#制作Java+Mysql+Tomcat环境安装程序,实现一键式安装。通过将JDK、Mysql、Tomcat三者制作成一个安装包,解决了客户在安装软件时的复杂配置和繁琐问题,便于管理软件版本和系统集成。具体步骤包括配置JDK环境变量和安装Mysql服务,其中使用了MySQL Server 5.5社区版和my.ini文件。安装方法为通过命令行将目录转到mysql的bin目录下,执行mysqld --install MySQL5命令。 ... [详细]
  • Imtryingtofigureoutawaytogeneratetorrentfilesfromabucket,usingtheAWSSDKforGo.我正 ... [详细]
  • 本文介绍了在CentOS上安装Python2.7.2的详细步骤,包括下载、解压、编译和安装等操作。同时提供了一些注意事项,以及测试安装是否成功的方法。 ... [详细]
  • 网络请求模块选择——axios框架的基本使用和封装
    本文介绍了选择网络请求模块axios的原因,以及axios框架的基本使用和封装方法。包括发送并发请求的演示,全局配置的设置,创建axios实例的方法,拦截器的使用,以及如何封装和请求响应劫持等内容。 ... [详细]
  • 树莓派语音控制的配置方法和步骤
    本文介绍了在树莓派上实现语音控制的配置方法和步骤。首先感谢博主Eoman的帮助,文章参考了他的内容。树莓派的配置需要通过sudo raspi-config进行,然后使用Eoman的控制方法,即安装wiringPi库并编写控制引脚的脚本。具体的安装步骤和脚本编写方法在文章中详细介绍。 ... [详细]
  • GetWindowLong函数
    今天在看一个代码里头写了GetWindowLong(hwnd,0),我当时就有点费解,靠,上网搜索函数原型说明,死活找不到第 ... [详细]
  • 本文介绍了在rhel5.5操作系统下搭建网关+LAMP+postfix+dhcp的步骤和配置方法。通过配置dhcp自动分配ip、实现外网访问公司网站、内网收发邮件、内网上网以及SNAT转换等功能。详细介绍了安装dhcp和配置相关文件的步骤,并提供了相关的命令和配置示例。 ... [详细]
  • 本文讨论了在Windows 8上安装gvim中插件时出现的错误加载问题。作者将EasyMotion插件放在了正确的位置,但加载时却出现了错误。作者提供了下载链接和之前放置插件的位置,并列出了出现的错误信息。 ... [详细]
  • http:my.oschina.netleejun2005blog136820刚看到群里又有同学在说HTTP协议下的Get请求参数长度是有大小限制的,最大不能超过XX ... [详细]
  • 在重复造轮子的情况下用ProxyServlet反向代理来减少工作量
    像不少公司内部不同团队都会自己研发自己工具产品,当各个产品逐渐成熟,到达了一定的发展瓶颈,同时每个产品都有着自己的入口,用户 ... [详细]
  • HDFS2.x新特性
    一、集群间数据拷贝scp实现两个远程主机之间的文件复制scp-rhello.txtroothadoop103:useratguiguhello.txt推pushscp-rr ... [详细]
  • CEPH LIO iSCSI Gateway及其使用参考文档
    本文介绍了CEPH LIO iSCSI Gateway以及使用该网关的参考文档,包括Ceph Block Device、CEPH ISCSI GATEWAY、USING AN ISCSI GATEWAY等。同时提供了多个参考链接,详细介绍了CEPH LIO iSCSI Gateway的配置和使用方法。 ... [详细]
  • 本文介绍了在Mac上安装Xamarin并使用Windows上的VS开发iOS app的方法,包括所需的安装环境和软件,以及使用Xamarin.iOS进行开发的步骤。通过这种方法,即使没有Mac或者安装苹果系统,程序员们也能轻松开发iOS app。 ... [详细]
author-avatar
噬灬魂鴒
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有