All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.webframe.web.spring.WFApplicationContext Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version

package org.webframe.web.spring;

import java.util.Arrays;

import org.springframework.beans.factory.support.DefaultListableBeanFactory;
import org.springframework.beans.factory.xml.XmlBeanDefinitionReader;
import org.springframework.web.context.support.XmlWebApplicationContext;
import org.webframe.support.SpringContextUtils;
import org.webframe.support.driver.resource.filter.JarResourceFilter;
import org.webframe.support.driver.resource.filter.ResourceFilter;

/**
 * 扩展spring XmlWebApplicationContext;添加自定义spring cfg获取,并支持ResourceFilter过滤
 * 
 * @author huangguoqing
 * @version $Id: WFApplicationContext.java,v 1.1.2.2 2010/08/06 08:46:31 huangguoqing Exp $ Create:
 *          2010-4-22 下午01:18:10
 */
public class WFApplicationContext extends XmlWebApplicationContext {

	private ResourceFilter	resourceFilter	= null;

	public WFApplicationContext() {
		super();
		ServiceHelper.init(this);
	}

	@Override
	protected DefaultListableBeanFactory createBeanFactory() {
		return new WFListableBeanFactory(getInternalParentBeanFactory());
	}

	@Override
	protected void initBeanDefinitionReader(XmlBeanDefinitionReader beanDefinitionReader) {
		ResourceFilter resourceFilter = getResourceFilter();
		if (resourceFilter == null) {
			resourceFilter = new JarResourceFilter();
		}
		beanDefinitionReader.loadBeanDefinitions(resourceFilter.filter(SpringContextUtils.getSpringContextResources()));
	}

	@Override
	public String[] getConfigLocations() {
		String[] locations = super.getConfigLocations();
		if (locations.length == 1 && Arrays.asList(locations).contains(DEFAULT_CONFIG_LOCATION)) {
			return new String[0];
		}
		return locations;
	}

	protected ResourceFilter getResourceFilter() {
		if (resourceFilter == null) {
			resourceFilter = new JarResourceFilter();
		}
		return resourceFilter;
	}

	public void setResourceFilter(ResourceFilter resourceFilter) {
		this.resourceFilter = resourceFilter;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy