zoukankan      html  css  js  c++  java
  • IDEA 运行报Command line is too long解法

    报错内容

    Error running 'SchemeSnapshotReadActionDelayNotifyConsumerMockTest'.onMessage: Command line is too long. Shorten command line for SchemeSnapshotReadActionDelayNotifyConsumerMockTest.onMessage or also for Junit default configuration.

    解决方案

    1、将configurantion中的Shorten command line中默认的选项none修改为“user-local default:JAR manifest - java -cp classpath.jar classname [args], 如下图所示

    2、修改项目下 .ideaworkspace.xml,找到标签 <component name="PropertiesComponent"> , 在标签里加一行  <property name="dynamic.classpath" value="true" />, 效果同上,也是修改Shorten command line.

    shorten command line 选项提供三种选项缩短类路径。

      none:这是默认选项,idea不会缩短命令行。如果命令行超出了OS限制,这个想法将无法运行您的应用程序,但是工具提示将建议配置缩短器。

      JAR manifest:idea 通过临时的classpath.jar传递长的类路径。原始类路径在MANIFEST.MF中定义为classpath.jar中的类路径属性。

      classpath file:idea 将一个长类路径写入文本文件中

  • 相关阅读:
    win2K/win2003终端服务器超出最大允许连接数解决之道
    DOM与SAX读取xml文件例程
    ubuntu安装配置telnet
    SCTP 简介
    groovy 脚本中文乱码问题解决
    编码问题研究
    gvim支持utf8
    ctags使用方法
    我家猫病了。。
    小朋友搞笑造句
  • 原文地址:https://www.cnblogs.com/dudu2mama/p/14177495.html
Copyright © 2011-2022 走看看