【IDEA】解决配置xml文件时,idea提示 application context not configured for this file 的问题

话不多说,直接上图

【IDEA】解决配置xml文件时,idea提示 application context not configured for this file 的问题_第1张图片

 解决办法:

Ctrl+Alt+Shift+S 快捷键打开Project Structure面板

或者点击右上角图标(idea版本不同,图标也会有所不同)

【IDEA】解决配置xml文件时,idea提示 application context not configured for this file 的问题_第2张图片

 进入Project Structure面板(可以看见左下黄色感叹号的提示)

【IDEA】解决配置xml文件时,idea提示 application context not configured for this file 的问题_第3张图片

 点击 号进入New Application Context面板

【IDEA】解决配置xml文件时,idea提示 application context not configured for this file 的问题_第4张图片

 勾选上相应的xml文件再点击完成即可,提示已消失。

【IDEA】解决配置xml文件时,idea提示 application context not configured for this file 的问题_第5张图片

 -------------------------------------------(完,以下内容仅供个人学习)-------------------------------------------

还有另一种方法,如果是Spring Boot工程项目,可以在主配置类上使用@ImportResource注解,导入一个或多个spring的配置文件,这样idea的提示也会消失。

注:@ImportResource必须标注在配置类上

导入一个(大括号可省略,建议保留养成习惯):

@ ImportResource(locations = {"classpath:beans.xml"})

导入多个(用逗号分隔,大括号不能省略):

@ ImportResource(locations = {"classpath:beans.xml","classpath:new_beans.xml"})

示例:

【IDEA】解决配置xml文件时,idea提示 application context not configured for this file 的问题_第6张图片

当然,也可以在被@Configuration标注的类上使用@ImportResource

扩展:

在spring boot中,推荐给容器添加组件使用全注解的方式

即配置类 == 配置文件

@Configuration
public class AppConfiguration {

    //将方法的返回值添加到容器中,容器中这个组件默认id为方法名(即abc)
    @Bean
    public Test_beansXML_Service abc(){
        return new Test_beansXML_Service();
    }
    //相当于在Spring配置文件中的 
}

 

你可能感兴趣的:(intellij-idea,xml,java,spring,boot)