Spring配置文件的路径

转http://www.cnblogs.com/vigarbuaa/p/3616947.html
Spring容器最基本的接口就是BeanFactory. BeanFactory负责配置、创建、管理Bean,它有一个子接口ApplicationContext,也称为Spring上下文。Spring容器负责管理Bean与Bean之间的信赖关系。

BeanFactory有很多实现类,通常使用 org.springframework.beans.factory.xml.XmlBeanFactory类。但对于大部分J2EE应用而言,推荐使 用ApplicationContext. ApplicationContext是BeanFactory的子接口,其常用实现类是org.springframework.context.support.FileSystemXmlApplicationContext 和org.springframework.context.support.ClassXmlAplicationContext 。 

Springr的配置信息通常采用XML配置文件来设置,因此,创建BeanFactory实例时,应该提供XML配置文件作为参数。、

下面详细介绍ApplicationContext的实际运用:

一:ClassPathXmlApplicationContext
1.没有前缀:默认为项目的classpath下相对路径
ApplicationContext appCt = new ClassPathXmlApplicationContext("app.spring.xml");

2.前缀classpath:表示的是项目的classpath下相对路径
ApplicationContext appCt = new ClassPathXmlApplicationContext("classpath:app.spring.xml");

3.使用前缀file 表示的是文件的绝对路径
ApplicationContext appCt = new ClassPathXmlApplicationContext("file:D:/app.spring.xml");

4.可以同时加载多个文件
String[] xmlCfg = new String[] { "classpath:base.spring.xml","app.spring.xml"};
ApplicationContext appCt = new ClassPathXmlApplicationContext(xmlCfg);

5.使用通配符加载所有符合要求的文件
ApplicationContext appCt = new ClassPathXmlApplicationContext("*.spring.xml");

二:FileSystemXmlApplicationContext
1.默认为项目工作路径 即项目的根目录
ApplicationContext appCt2 = new FileSystemXmlApplicationContext("src/main/resources/app.spring.xml");

2.前缀classpath:表示的是项目的classpath下相对路径
ApplicationContext appCt2 = new FileSystemXmlApplicationContext("classpath:app.spring.xml");

3.使用前缀file 表示的是文件的绝对路径
ApplicationContext appCt2 = new FileSystemXmlApplicationContext("file:D:/app.spring.xml ");
ApplicationContext appCt2 = new FileSystemXmlApplicationContext("D:/app.spring.xml ");

4.可以同时加载多个文件
String[] xmlCfg = new String[] { "src/main/resources/base.spring.xml","classpath:app.spring.xml"};
ApplicationContext appCt2 = new FileSystemXmlApplicationContext(xmlCfg);

5.使用通配符加载所有符合要求的文件
ApplicationContext appCt2 = new FileSystemXmlApplicationContext("classpath:*.spring.xml");

详细代码如下:

Java代码
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.context.support.FileSystemXmlApplicationContext;

import aoplog.LogAfterAdvice;
import aoplog.LogBeforeAdvice;

/**

  • @author Michael

*/
public class TestApplicationContext {

/**  
 * @param args  
 */   
public   static   void  main(String[] args) {  

    /**  
     * ClassPathXmlApplicationContext  
     */   
    // 没有前缀:默认为项目的classpath下相对路径   
    ApplicationContext appCt = new  ClassPathXmlApplicationContext(  
            "app.spring.xml" );  

    // 前缀classpath:表示的是项目的classpath下相对路径   
    // ApplicationContext appCt = new ClassPathXmlApplicationContext(   
    // "classpath:app.spring.xml");   

    // 使用前缀file 表示的是文件的绝对路径   
    // ApplicationContext appCt = new ClassPathXmlApplicationContext(   
    // "file:D:/app.spring.xml");   

    LogBeforeAdvice logBefore = (LogBeforeAdvice) appCt  
            .getBean("logBefore" );  
    System.out.println("ClassPathXmlApplicationContext test:"   
            + logBefore.getClass());  

    // 利用通配符文件加载   
    ApplicationContext appCtXx = new  ClassPathXmlApplicationContext(  
            "*.spring.xml" );  

    // 多文件加载   
    String[] xmlCfg = new  String[] {  "classpath:base.spring.xml" ,  
            "myapp.spring.xml"  };  
    ApplicationContext appCtMore = new  ClassPathXmlApplicationContext(  
            xmlCfg);  

    /*  
     * FileSystemXmlApplicationContext  
     */   

    // 默认为项目工作路径 即项目的根目录   
    ApplicationContext appCt2 = new  FileSystemXmlApplicationContext(  
            "src/main/resources/app.spring.xml" );  

    // 前缀classpath:表示的是项目的classpath下相对路径   
    // ApplicationContext appCt2 = new FileSystemXmlApplicationContext(   
    // "classpath:app.spring.xml");   

    // 使用前缀file 表示的是文件的绝对路径   
    // ApplicationContext appCt2 = new FileSystemXmlApplicationContext(   
    // "file:D:/app.spring.xml");   

    LogAfterAdvice logAfter = (LogAfterAdvice) appCt2.getBean("logAfter" );  
    System.out.println("FileSystemXmlApplicationContext test:"   
            + logAfter.getClass());  
}  

我出现的问题是ClassPathXmlApplicationContext(new String[] {"a.xml","b.xml"});配置两个a.xml,b.xml,之后编译运行,
然后在一个a.xml里面,然后ClassPathXmlApplicationContext("a.xml")报错说什么b.xml路径不对。我就改了
classpath:b.xml就行了再改回去也可以了 - -

你可能感兴趣的:(Spring配置文件的路径)