Intellij 如何为项目的所有运行配置禁用类路径文件模式?

2022-09-03 07:14:00

早些时候,我在运行某些东西时遇到问题,intellij抛出了这个错误。 我单击了启用。这并没有解决我的问题,但现在我似乎无法从intellij运行任何东西。此选项在设置中的什么位置,以便我可以禁用它?Would you like to enable classpath file mode for all run configurations of your project?


答案 1

在工作区的 Intellij 配置文件中将 Ddynamic.classpath 设置为 true 或 Add as a JVM 参数。-Ddynamic.classpath=tr‌​ue


答案 2

转到项目的根文件夹,有.idea文件夹。打开工作区.xml文件 - 搜索“dynamic.classpath”属性并将值更改为 false。


推荐