英文:
Could not find the Run option in IntelliJ for Spring Boot Applicaton
问题
我无法找到在IntelliJ中运行Spring Boot Maven应用程序的任何方法。 Maven清理、maven安装和构建项目都正常工作。但是运行选项没有显示,并且无法在配置中添加主类。
英文:
I could not find any way to run the Spring Boot Maven application in IntelliJ. Maven clean, maven install and Build Project is working fine. But Run option is not showing and could not add the Main class in configuration.
答案1
得分: 1
以下是翻译好的部分:
似乎 Maven/IDEA 没有识别到您的项目结构,因此不知道源代码的位置。
尝试在 Maven 工具窗口中点击 "Reload All Maven Projects"。
如果这不起作用,您可以:
- 关闭项目窗口
File | Close Project
和 IDE。 - 在操作系统的文件浏览器中打开项目,然后删除所有
.iml
文件和.idea
文件夹。 - 从现有源重新导入项目
英文:
Seems Maven/IDEA doesn't pick up your Project's structure, so it doesn't know where the source code is.
Try clicking "Reload All Maven Projects" in Maven Tool Window.
If that won't help you can:
-
Close the project window
File | Close Project
and the IDE. -
Open a project in OS file explorer and remove all
*.iml
files and the.idea
folder from a project.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论