美文网首页
获取Spring上下文(ApplicationContext)

获取Spring上下文(ApplicationContext)

作者: 团长plus | 来源:发表于2018-12-11 10:29 被阅读13次
    package cn.memedai.menotification.filter;
    
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    
    import org.springframework.context.ApplicationContext;
    import org.springframework.context.ApplicationContextAware;
    import org.springframework.context.support.ClassPathXmlApplicationContext;
    import org.springframework.stereotype.Component;
    import org.springframework.web.context.support.WebApplicationContextUtils;
    /**
     * 实现对spring context 的管理
     * @author 
     * @2017年3月29日
     * @上午9:07:27
     * @
     */
    @Component
    public class SpringContextHolder implements ApplicationContextAware {
    
        private static ApplicationContext applicationContext;
    
        /**
         * 实现ApplicationContextAware接口的context注入函数, 将其存入静态变量.
         */
        public void setApplicationContext(ApplicationContext applicationContext) {
            SpringContextHolder.applicationContext = applicationContext; // NOSONAR
        }
    
        /**
         * 取得存储在静态变量中的ApplicationContext.
         */
        public static ApplicationContext getApplicationContext() {
            checkApplicationContext();
            return applicationContext;
        }
    
        /**
         * 从静态变量ApplicationContext中取得Bean, 自动转型为所赋值对象的类型.
         */
        @SuppressWarnings("unchecked")
        public static <T> T getBean(String name) {
            checkApplicationContext();
            return (T) applicationContext.getBean(name);
        }
    
        /**
         * 从静态变量ApplicationContext中取得Bean, 自动转型为所赋值对象的类型.
         */
        @SuppressWarnings("unchecked")
        public static <T> T getBean(Class<T> clazz) {
            checkApplicationContext();
            return (T) applicationContext.getBeansOfType(clazz);
        }
    
        /**
         * 清除applicationContext静态变量.
         */
        public static void cleanApplicationContext() {
            applicationContext = null;
        }
    
        private static void checkApplicationContext() {
            if (applicationContext == null) {
                throw new IllegalStateException(
                        "applicaitonContext未注入,请在applicationContext.xml中定义SpringContextHolder");
            }
        }
    
    
        public static void setHttpRequestResponseHolder(HttpServletRequest request, HttpServletResponse response){
            responseThreadLocal.set(response);
            ApplicationContext ap = WebApplicationContextUtils.getWebApplicationContext(null);
        }
        public static HttpServletResponse getHttpResponse(){
            return responseThreadLocal.get();
        }
    
        public static void clean(){
            responseThreadLocal.remove();
        }
    
        private static final ThreadLocal<HttpServletResponse> responseThreadLocal = new ThreadLocal();
    
    
    }
    
    

    相关文章

      网友评论

          本文标题:获取Spring上下文(ApplicationContext)

          本文链接:https://www.haomeiwen.com/subject/sqlshqtx.html