Answers:
您可以通过更改默认的 JUnit运行/调试配置模板来设置缩短命令行的默认方法,并将其用作进一步配置的模板。然后,您在项目中创建的所有新的“运行/调试”配置将使用相同的选项。
这是有关可配置命令行缩短器选项的相关博客文章。
在您的.idea文件夹中,更改workspace.xml文件
加
<property name="dynamic.classpath" value="true" />
至
<component name="PropertiesComponent">
.
.
.
</component>
例
<component name="PropertiesComponent">
<property name="project.structure.last.edited" value="Project" />
<property name="project.structure.proportion" value="0.0" />
<property name="project.structure.side.proportion" value="0.0" />
<property name="settings.editor.selected.configurable" value="preferences.pluginManager" />
<property name="dynamic.classpath" value="true" />
</component>
如果看不到,请自行添加
<component name="PropertiesComponent">
<property name="dynamic.classpath" value="true" />
</component>