配置springmvc在其他类中(spring容器外)获取注入bean

本文涉及的产品
容器服务 Serverless 版 ACK Serverless,317元额度 多规格
容器镜像服务 ACR,镜像仓库100个 不限时长
容器服务 Serverless 版 ACK Serverless,952元额度 多规格
简介: 学习https://github.com/thinkgem/jeesite 今天在写JedisUtils的时候要注入JedisPool,而这个属性被设置为static,@Resource和@Autowired都不可以注入,因为spring不能为静态变量依赖注入。

学习https://github.com/thinkgem/jeesite

今天在写JedisUtils的时候要注入JedisPool,而这个属性被设置为static,@Resource和@Autowired都不可以注入,因为spring不能为静态变量依赖注入。因此需要额外的方法获取spring管理的bean。本文即SpringContextHolder:

 1 package com.demo.common.utils;
 2 
 3 import org.apache.commons.lang3.Validate;
 4 import org.slf4j.Logger;
 5 import org.slf4j.LoggerFactory;
 6 import org.springframework.beans.BeansException;
 7 import org.springframework.beans.factory.DisposableBean;
 8 import org.springframework.context.ApplicationContext;
 9 import org.springframework.context.ApplicationContextAware;
10 import org.springframework.context.annotation.Lazy;
11 import org.springframework.stereotype.Service;
12 
13 /**
14  * 以静态变量保存Spring ApplicationContext, 可在任何代码任何地方任何时候取出ApplicaitonContext.
15  * Created by Administrator on 2016/2/23.
16  */
17 @Service
18 @Lazy(false)
19 public class SpringContextHolder implements ApplicationContextAware ,DisposableBean {
20     private static ApplicationContext applicationContext = null;
21     private static Logger logger = LoggerFactory.getLogger(SpringContextHolder.class);
22 
23     /**
24      * 去的存储在静态变量中的ApplicationContext
25      * @return
26      */
27     public static ApplicationContext getApplicationContext(){
28         assertContextInjected();
29         return applicationContext;
30     }
31 
32     /**
33      * 从静态变量applicationContext中去的Bean,自动转型为所复制对象的类型
34      * @param name
35      * @param <T>
36      * @return
37      */
38     public static <T> T getBean(String name){
39         assertContextInjected();
40         return (T)applicationContext.getBean(name);
41     }
42 
43     /**
44      * 从静态变量applicationContext中去的Bean,自动转型为所复制对象的类型
45      * @param requiredType
46      * @param <T>
47      * @return
48      */
49     public static <T> T getBean(Class<T> requiredType){
50         assertContextInjected();
51         return (T)applicationContext.getBean(requiredType);
52     }
53 
54     /**
55      * 清楚SpringContextHolder中的ApplicationContext为Null
56      */
57     public static void clearHolder(){
58         if(logger.isDebugEnabled()){
59             logger.debug("清楚SpringContextHolder中的ApplicationContext:"+applicationContext);
60         }
61         applicationContext = null;
62     }
63 
64 
65     /**
66      * 检查ApplicationContext不为空
67      */
68     private static void assertContextInjected() {
69         Validate.validState(applicationContext!=null,"applicaitonContext属性未注入, 请在applicationContext.xml中定义SpringContextHolder.");
70     }
71 
72     /**
73      * 实现ApplicationContextAware接口,注入Context到静态变量
74      * @param applicationContext
75      * @throws BeansException
76      */
77     @Override
78     public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
79         SpringContextHolder.applicationContext = applicationContext;
80     }
81 
82     /**
83      * 实现DisposableBean接口,在Context关闭时清理静态变量
84      * @throws Exception
85      */
86     @Override
87     public void destroy() throws Exception {
88         SpringContextHolder.clearHolder();
89     }
90 }

 





唯有不断学习方能改变! -- Ryan Miao
目录
相关文章
|
21天前
|
XML Java 数据格式
Spring从入门到入土(bean的一些子标签及注解的使用)
本文详细介绍了Spring框架中Bean的创建和使用,包括使用XML配置文件中的标签和注解来创建和管理Bean,以及如何通过构造器、Setter方法和属性注入来配置Bean。
56 9
Spring从入门到入土(bean的一些子标签及注解的使用)
|
12天前
|
Java 测试技术 Windows
咦!Spring容器里为什么没有我需要的Bean?
【10月更文挑战第11天】项目经理给小菜分配了一个紧急需求,小菜迅速搭建了一个SpringBoot项目并完成了开发。然而,启动测试时发现接口404,原因是控制器包不在默认扫描路径下。通过配置`@ComponentScan`的`basePackages`字段,解决了问题。总结:`@SpringBootApplication`默认只扫描当前包下的组件,需要扫描其他包时需配置`@ComponentScan`。
|
21天前
|
Java 开发者 Spring
Spring bean的生命周期详解!
本文详细解析Spring Bean的生命周期及其核心概念,并深入源码分析。Spring Bean是Spring框架的核心,由容器管理其生命周期。从实例化到销毁,共经历十个阶段,包括属性赋值、接口回调、初始化及销毁等。通过剖析`BeanFactory`、`ApplicationContext`等关键接口与类,帮助你深入了解Spring Bean的管理机制。希望本文能助你更好地掌握Spring Bean生命周期。
53 1
|
23天前
|
Java Spring
获取spring工厂中bean对象的两种方式
获取spring工厂中bean对象的两种方式
17 1
|
11天前
|
存储 Docker 容器
docker中挂载数据卷到容器
【10月更文挑战第12天】
32 5
|
4天前
|
存储 Kubernetes C++
Kubernetes VS Docker Swarm:哪个容器编排工具更适合你?
随着容器技术的快速发展,容器编排工具成为了现代软件开发和运维的重要环节。在众多容器编排工具中,Kubernetes和Docker Swarm无疑是最受欢迎的两个。本文将从技术特性、易用性和社区支持三个方面,对Kubernetes和Docker Swarm进行比较,以帮助您选择更适合您需求的容器编排工具。
18 3
|
5天前
|
存储 缓存 Docker
docker中挂载数据卷到容器
【10月更文挑战第16天】
15 2
|
6天前
|
存储 关系型数据库 MySQL
|
7天前
|
存储 Docker 容器
docker中挂载数据卷到容器
【10月更文挑战第13天】
13 2
|
8天前
|
运维 监控 数据可视化
Docker容器可视化管理工具 - WGCLOUD基础介绍
WGCLOUD是新一代运维监测平台,它可以监控Docker容器的各种性能数据,比如内存,cpu,Image,运行时间,运行状态,端口映射等信息

热门文章

最新文章