Created
December 19, 2018 10:01
-
-
Save qlong8807/6c668ba638a94804b99026e5f99bd016 to your computer and use it in GitHub Desktop.
java代码获取Spring容器中的bean
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import org.springframework.beans.BeansException; | |
import org.springframework.context.ApplicationContext; | |
import org.springframework.context.ApplicationContextAware; | |
import org.springframework.stereotype.Component; | |
@Component | |
public class SpringContextUtil implements ApplicationContextAware { | |
private static ApplicationContext applicationContext; // Spring应用上下文环境 | |
/* | |
* 实现了ApplicationContextAware 接口,必须实现该方法; | |
* 通过传递applicationContext参数初始化成员变量applicationContext | |
*/ | |
public void setApplicationContext(ApplicationContext applicationContext) throws BeansException { | |
SpringContextUtil.applicationContext = applicationContext; | |
} | |
public static ApplicationContext getApplicationContext() { | |
return applicationContext; | |
} | |
@SuppressWarnings("unchecked") | |
public static <T> T getBean(String name) throws BeansException { | |
return (T) applicationContext.getBean(name); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment