Intellij idea Spring启动应用程序intellij

Intellij idea Spring启动应用程序intellij,intellij-idea,spring-boot,Intellij Idea,Spring Boot,自动连线和bean检测功能不适用于我的spring引导应用程序。应用程序运行良好,只是intellij没有正确地检测到bean。我在模块中添加了Spring方面、hibernate方面和jpa方面 这是我的主要课程: @SpringBootApplication @EnableWebMvcSecurity @ImportResource("classpath:spring/applicationContext.xml") public class MyApplication{ publ

自动连线和bean检测功能不适用于我的spring引导应用程序。应用程序运行良好,只是intellij没有正确地检测到bean。我在模块中添加了Spring方面、hibernate方面和jpa方面

这是我的主要课程:

@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引导支持(上次我检查这个版本时,应该在几个月后准备好)。查看更多详细信息