Spring 启动应用程序 intellij

Spring boot application intellij

我的 spring 引导应用程序无法使用自动装配和 bean 检测功能。该应用程序 运行 很好,只是 intellij 没有正确检测到 bean。我已将 Spring facet、hibernate facet、jpa facet 添加到模块中。

这是我的主要内容class:

@SpringBootApplication
@EnableWebMvcSecurity
@ImportResource("classpath:spring/applicationContext.xml")
public class MyApplication{

    public static void main(String[] args) {
        SpringApplication.run(MyApplication.class, args);
    }

这是 IntelliJ 中的一个已知错误。但是,计划为 14.1 版本提供适当的 Spring 引导支持(我上次检查此版本应该会在几个月内准备就绪)。查看 IDEA-119230 了解更多详情。