Spring中ClassPathXmlApplication与FileSystemXmlApplicationContext的区别

Posted sxc1991

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring中ClassPathXmlApplication与FileSystemXmlApplicationContext的区别相关的知识,希望对你有一定的参考价值。

一、概述

在项目中遇到加载不到Spring配置文件,简单分析后,写此文备忘!

二、测试所需资源

TestBean.java

public class TestBean {
    public TestBean(){
        System.out.println(this.getClass().getName().concat(" init !"));
    }

    public String getTestStr() {
        return "testStr";
    }
}

applicationContext.xml

<bean id="testBean" class="com.bean.TestBean" />

二、区别

2.1 ClassPathXmlApplicationContext使用方法

ClassPathXmlApplicationContext 默认会去 classPath 路径下找。classPath 路径指的就是编译后的 classes 目录。

示例:

@Test
public void testBean(){
    //单配置文件方式一
    BeanFactory beanFactory=new ClassPathXmlApplicationContext("applicationContext.xml");
    
    //单配置文件方式二
    BeanFactory beanFactory=new ClassPathXmlApplicationContext("classpath:applicationContext.xml");
    
    //多个配置文件
    BeanFactory beanFactory=new ClassPathXmlApplicationContext(new String[]{"applicationContext.xml"});
    
    //绝对路径需加“file:”前缀
    BeanFactory beanFactory = new ClassPathXmlApplicationContext("file:E:\Workspace\idea_workspace\spring\springtest\src\main\resources\applicationContext.xml");

    TestBean bean= (TestBean) beanFactory.getBean("testBean");
    assertEquals("testStr",bean.getTestStr());
}

运行示例你会发现 “classpath:” 是可以缺省的。
如果是绝对路径,就需要加上 “file:” 前缀,不可缺省。

2.2 FileSystemXmlApplicationContext使用方法

FileSystemXmlApplicationContext 默认是去项目的路径下加载,可以是相对路径,也可以是绝对路径,若是绝对路径,“file:” 前缀可以缺省。

示例:

@Test
public void testBean(){
    //classes目录
    BeanFactory beanFactory=new FileSystemXmlApplicationContext("classpath:applicationContext.xml");

    //项目路径相对路径
    BeanFactory beanFactory=new FileSystemXmlApplicationContext("src\\main\\resources\\applicationContext.xml");

    //多配置文件
    BeanFactory beanFactory=new FileSystemXmlApplicationContext(new String[]{"src\\main\\resources\\applicationContext.xml"});

    //绝对目录
    BeanFactory beanFactory=new FileSystemXmlApplicationContext(new String[]{"E:\\Workspace\\idea_workspace\\spring\\springtest\\src\\main\\resources\\applicationContext.xml"});

    TestBean bean= (TestBean) beanFactory.getBean("testBean");
    assertEquals("testStr",bean.getTestStr());
}

以上是关于Spring中ClassPathXmlApplication与FileSystemXmlApplicationContext的区别的主要内容,如果未能解决你的问题,请参考以下文章

Spring 4 安全、MySQL、c3p0 连接。登录在 Spring 5 中有效,但在 Spring 4 中无效

Spring Day01 Spring 框架概述以及Spring中基于XML的IOC配置

学习笔记——Spring简介;Spring搭建步骤;Spring的特性;Spring中getBean三种方式;Spring中的标签

spring中 实体类在啥时候交给spring容器管理?

怎么把自己创建的对象加到spring容器中。让spring管理

如何在Maven中配置Spring依赖