Spring获取ApplicationContext对象工具类的实现方法
来源:爱站网时间:2019-12-11编辑:网友分享
Spring获取ApplicationContext对象工具类的实现方法,大家都了解吗?其实Spring都是高级的容器,这个时候我们要把ApplicationContext设置进去哦,别着急,下面就让爱站技术频道小编带大家学习吧!
Spring获取ApplicationContext对象工具类的实现方法,大家都了解吗?其实Spring都是高级的容器,这个时候我们要把ApplicationContext设置进去哦,别着急,下面就让爱站技术频道小编带大家学习吧!
Spring获取ApplicationContext对象工具类的实现方法
(1)实现的工具类:
package com.util; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; final public class ApplicationContextUtil { private static ApplicationContext ac=null; private ApplicationContextUtil(){ } static{ ac=new ClassPathXmlApplicationContext("applicationContext.xml"); } public static ApplicationContext getApplicationContext(){ //获得返回的容器对象 return ac; } }
(2)使用方法:
public static void getByUtil(){ ApplicationContextUtil.getApplicationContext().getBean("userService"); } 上述就是爱站技术频道小编带给大家带来的Spring获取ApplicationContext对象工具类的实现方法,大家可以收藏本文,方便大家的使用。