idea 启动模块时报错:Error running GatewayApplication. Command line is too long. Shorten the command line vi

  • Post author:
  • Post category:其他


原因:命令行过长

解决办法:

找到项目下 .idea/workspace.

xml

,找到标签 <component name=”PropertiesComponent”> , 在标签keyToString中添加一行”dynamic.classpath”: “true”,解决

  <component name="PropertiesComponent"><![CDATA[{
  "keyToString": {
	"dynamic.classpath": "true",
    "node.js.selected.package.tslint": "(autodetect)",
    "settings.editor.selected.configurable": "project.scopes"
  }
}]]></component>



版权声明:本文为YezhanCHN原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。