java

但是发给对方v


package cn.itcast.elec.container;

import org.apache.commons.lang.StringUtils;

public class ServiceProvider {
	public static ServiceProviderCord spc;
	static {
//		System.out.println("aaaaaaaaaaaaa");
		spc =new ServiceProviderCord();
		spc.load("beans.xml");
	}
	public static Object getService(String serviceName){
//		System.out.println("bbbbbbbb");
		if (StringUtils.isBlank(serviceName)){
			throw new RuntimeException("当前服务名称不存在");
		}
		Object object=null;
		if (spc.ac.containsBean(serviceName)){
//			System.out.println("ccccccccc");
			object=spc.ac.getBean(serviceName);
		}
		if (object == null){
			throw new RuntimeException("当前服务名称["+serviceName+"]下的服务节点不存在");
			
		}
		return object;
	}

}


你可能感兴趣的:(java,object,null,import,public)