Intellij Idea 运行现有Sping Boot 应用程序时出错[已关闭]

ghhkc1vu  于 2022-12-29  发布在  其他
关注(0)|答案(2)|浏览(153)

2小时前关门了。
Improve this question
I am trying to run the following app from github: https://github.com/vaibhavsood/BookMyMovie I cloned it and tried to run it directly from my Intellij IDE folowing the exact intructions.(running the ReservationsApplication.java class).However I am getting the following error during compilation:
"com. vaibhavsood. runner. DataLoader中的字段任务执行器需要类型为'org. springframework. core. task. TaskExecutor'的bean,但找不到该bean。
行动:
考虑在配置中定义一个类型为'org.springframework. core. task. TaskExecutor'的bean。"
我面临的问题是什么?我如何解决它?

kt06eoxx

kt06eoxx1#

我认为这是因为你没有一个Spring框架。确保Spring在你的IDE中正确安装和设置。或者检查Maven设置

7gyucuyw

7gyucuyw2#

请参阅链接了解更多详情,

    • 在IntelliJ IDEA中启用Spring支持**Spring支持依赖于Spring和相关插件,这些插件在IntelliJ IDEA Ultimate中默认捆绑并启用。此功能在IntelliJ IDEA Community Edition和IntelliJ IDEA Edu中不可用。

1.按Ctrl + Alt + S打开IDE设置并选择"插件"。
1.打开Installed标签页,搜索Spring并确保选中所有相关插件旁边的复选框。

相关问题