Spring Gradle 项目

Spring Gradle Project

我在 spring 项目中工作,我刚从我的 PM 那里得到了项目,当项目尝试 运行 时遇到了这个错误

Main class name has not been configured and it could not be resolved

该项目使用了多个使用 application.yml 的环境。所以有一些类似的文件,如 application-dev.yml 等

而且没有具体的错误,我不知道这个错误是什么鬼。 如果您对此有所了解,请帮助我。谢谢

你可以在这里查看我的build.gradle

https://pastebin.com/3dwJAgNp

尝试添加 mainClassName

mainClassName 应该是完全限定的 class 名称,而不是路径。

mainClassName = "full.package.name.MainClassApplication"

此官方成绩文档可能会有所帮助。

https://docs.gradle.org/current/userguide/application_plugin.html