IDEA:“Command line is too long”问题解决
背景(启动调试时的错误信息)
Command line is too long. Shorten command line for Application or also for Spring Boot default configuration.
解决
打开项目根目录下的.idea/worksapce.xml
文件;找到PropertiesComponent
配置节;添加以下配置:
<property name="dynamic.classpath" value="true" />
示例
<component name="PropertiesComponent">
<property name="Git.Branch.Popup.ShowAllRemotes" value="true" />
<property name="WebServerToolWindowFactoryState" value="false" />
<property name="aspect.path.notification.shown" value="true" />
<property name="nodejs_interpreter_path.stuck_in_default_project" value="undefined stuck path" />
<property name="nodejs_npm_path_reset_for_default_project" value="true" />
<property name="settings.editor.selected.configurable" value="preferences.fileTypes" />
<property name="dynamic.classpath" value="true" />
</component>
还没有评论,来说两句吧...