我正在使用IntelliJ Idea 2017.3以及任何Gradle项目(即使是来自GitHub的简单'hello world')我总是遇到下一个错误:
"Unable to start the daemon process.
This problem might be caused by incorrect configuration of the daemon.
For example, an unrecognized jvm option is used.
Please refer to the user guide chapter on the daemon at https://docs.gradle.org/3.5-rc-2/userguide/gradle_daemon.html
Please read the following process output to find out more:
-----------------------
Error: Could not find or load main class 1.8"
同时,如果我使用Gradle包装器运行一个应用程序(在我的情况下是gradlew.bat),一切都很完美。对我来说,它看起来像配置错误,但我无法在Idea配置或任何其他地方找到我做错的事情。我很感激任何帮助,或者知道在哪里挖掘。
答案 0 :(得分:0)
问题已经解决,我想与所有遇到类似问题的人分享这些知识。 就我而言,我必须从IDEA配置目录%IDEA_HOME%\ config \ options中删除两个配置文件 gradle.experimental.xml 和 gradle.settings.xml 即可。我想它们是在我在PC上全局安装Gradle时创建的。不知何故,这些设置都被保留了,即使我删除了全局安装的Gradle并开始使用Gradle的包装器。