zoukankan      html  css  js  c++  java
  • 自定义Spring ApplicationContext 支持动态订阅spring配置

    public class StringXmlApplicationContext extends AbstractXmlApplicationContext {

    private Resource[] configResources;

    public StringXmlApplicationContext(String stringXml) {

      this(new String[] { stringXml }, null);

    }

    public StringXmlApplicationContext(String[] stringXmls) {

      this(stringXmls, null);

    }

    public StringXmlApplicationContext(String[] stringXmls, ApplicationContext parent) {

      super(parent);

      this.configResources = new Resource[stringXmls.length];

      for (int i = 0; i < stringXmls.length; i++) {

        this.configResources[i] = new ByteArrayResource(stringXmls[i].getBytes());

      }

      refresh();

    }

    protected Resource[] getConfigResources() {

      return this.configResources;

    }

    public ClassLoader getClassLoader() { 

           return this.getClass().getClassLoader();

        }

    }

  • 相关阅读:
    flex-direction
    flex-grow
    Push API
    ServiceWorker.state
    Using Service Workers
    Promise.then
    Promise()
    Using promises
    node-rsa
    async.waterfall
  • 原文地址:https://www.cnblogs.com/adealjason/p/6775264.html
Copyright © 2011-2022 走看看