首页 > 移动平台 > 详细

自定义Spring ApplicationContext 支持动态订阅spring配置

时间:2017-04-27 17:41:44      阅读:185      评论:0      收藏:0      [点我收藏+]

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();

    }

}

自定义Spring ApplicationContext 支持动态订阅spring配置

原文:http://www.cnblogs.com/adealjason/p/6775264.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!