当前位置:   article > 正文

静态方法调用Spring容器中的bean_spring 静态方法中引用bean

spring 静态方法中引用bean

自定义工具类中有时需要调用容器中的bean,因为是静态方法,声明注入bean时必须用static修饰,此时会出现注入异常。
例如:

@Component
public class CacheUtil {

	private static RedisTemplate<String, Serializable> redisTemplate;
	
	public static Object get(String key) {
    	return redisTemplate.opsForValue().get(key);
	}
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

解决方法一:使用@Autowired注解构造函数

@Autowired
public CacheUtil(RedisTemplate<String, Serializable> redisTemplate) {
    CacheUtil.redisTemplate= redisTemplate;
}
  • 1
  • 2
  • 3
  • 4

方法二:使用@Autowired注解setXxx注入

@Autowired
public void setRedisTemplate(RedisTemplate<String, Serializable> redisTemplate) {
    CacheUtil.redisTemplate = redisTemplate;
}
  • 1
  • 2
  • 3
  • 4

方法三:使用 @PostConstruct 注解

@Autowired
private CacheImpl cacheImpl;

private static CacheUtil cacheUtil ;

@PostConstruct
public void init() {
    cacheUtil = this;
    cacheUtil.cacheImpl= this.cacheImpl;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/一键难忘520/article/detail/798474
推荐阅读
相关标签
  

闽ICP备14008679号