zoukankan      html  css  js  c++  java
  • Spring中加载xml配置文件的六种方式

    因为目前正在从事一个项目,项目中一个需求就是所有的功能都是插件的形式装入系统,这就需要利用Spring去动态加载某一位置下的配置文件,所以就总结了下Spring中加载xml配置文件的方式,我总结的有6种, xml是最常见的spring 应用系统配置源。Spring中的几种容器都支持使用xml装配bean,包括:
    XmlBeanFactory,ClassPathXmlApplicationContext,FileSystemXmlApplicationContext,XmlWebApplicationContext

    一: XmlBeanFactory 引用资源
    Resource resource = new ClassPathResource("appcontext.xml");
    BeanFactory factory = new XmlBeanFactory(resource);

    二: ClassPathXmlApplicationContext 编译路径
    ApplicationContext factory=new ClassPathXmlApplicationContext("classpath:appcontext.xml");
    // src目录下的
    ApplicationContext factory=new ClassPathXmlApplicationContext("appcontext.xml");
    ApplicationContext factory=new ClassPathXmlApplicationContext(new String[] {"bean1.xml","bean2.xml"});
    // src/conf 目录下的
    ApplicationContext factory=new ClassPathXmlApplicationContext("conf/appcontext.xml");
    ApplicationContext factory=new ClassPathXmlApplicationContext("file:G:/Test/src/appcontext.xml");

    三: 用文件系统的路径
    ApplicationContext factory=new FileSystemXmlApplicationContext("src/appcontext.xml");
    //使用了 classpath: 前缀,作为标志, 这样,FileSystemXmlApplicationContext 也能够读入classpath下的相对路径
    ApplicationContext factory=new FileSystemXmlApplicationContext("classpath:appcontext.xml");
    ApplicationContext factory=new FileSystemXmlApplicationContext("file:G:/Test/src/appcontext.xml");
    ApplicationContext factory=new FileSystemXmlApplicationContext("G:/Test/src/appcontext.xml");

    四: XmlWebApplicationContext是专为Web工程定制的。
    ServletContext servletContext = request.getSession().getServletContext();
    ApplicationContext ctx = WebApplicationContextUtils.getWebApplicationContext(servletContext );

    五: 使用BeanFactory
    BeanDefinitionRegistry reg = new DefaultListableBeanFactory();
    XmlBeanDefinitionReader reader = new XmlBeanDefinitionReader(reg);
    reader.loadBeanDefinitions(new ClassPathResource("bean1.xml"));
    reader.loadBeanDefinitions(new ClassPathResource("bean2.xml"));
    BeanFactory bf=(BeanFactory)reg;

    六:Web 应用启动时加载多个配置文件
    通过ContextLoaderListener 也可加载多个配置文件,在web.xml文件中利用
    元素来指定多个配置文件位置,其配置如下:
    Java代码 收藏代码


    contextConfigLocation

    ./WEB-INF//Appserver-resources.xml,
    classpath:config/aer/aerContext.xml,
    classpath:org/codehaus/xfire/spring/xfire.xml,
    ./WEB-INF/
    /*.spring.xml

    这个方法加载配置文件的前提是已经知道配置文件在哪里,虽然可以利用“*”通配符,但灵活度有限。

  • 相关阅读:
    nginx安装
    win7 mount到Linux下无法分配内存的问题(Cannot allocate memory)
    [转]linux时间同步
    关于文件缓冲的问题
    【转】VNC配置
    yum代理设置
    mysql开启日志
    [译]rabbitmq 2.5 Where’s my message? Durability and you
    [译]rabbitmq 2.4 Multiple tenants: virtual hosts and separation
    [译]rabbitmq 2.2 Building from the bottom: queues
  • 原文地址:https://www.cnblogs.com/leigang1314/p/5577674.html
Copyright © 2011-2022 走看看