spring实现静态注入(类或者属性)操作示例
spring实现静态注入类或者属性
场景是:工具类一般都是静态方法,静态方法只能访问静态属性。所以,我们需要静态注入类或者属性。
常规操作:
注入类或者方法:
@Autowired private TestService testService; @Resource private TestService testService; @Value("${key}") private String key;
这样,我们就把容器里的类和Enviroment里的值注进去了。
静态注入操作:
我们使用相同的方式进行注入
@Autowired private static TestService testService; @Resource private static TestService testService; @Value("${key}") private static String key;
我们在静态方法使用的时候,会出现null;
发现注入不进去。
静态注入失败解决两种方式
- (1)@PostConstruct方式实现
@Component public class TestUtil { @Autowired private static TestService testService; private static TestUtil testUtils; @PostConstruct public void init() { testUtils =this; testUtils.testService =this.testService; } }
@PostConstruct 注解的方法在加载类的构造函数之后执行,也就是在加载了构造函数之后,执行init方法;
(@PreDestroy 注解定义容器销毁之前的所做的操作)这种方式和在xml中配置 init-method和 destory-method方法差不多,定义spring 容器在初始化bean 和容器销毁之前的所做的操作;
- (2)set方法注入实现
@Component public class TestUtil { private static TestService testService; private static String key; @Value("{key}") public void setTestService(String key) { TestUtil.key = key; } @Autowired public void setTestService(TestService testService) { TestUtil.testService =this.testService; } }
ok,完事,使用set方法注入,这种使用比较多
以上就是spring实现静态注入(类或者属性)操作示例的详细内容,更多关于spring静态注入类属性的资料请关注脚本之家其它相关文章!
相关文章
解决Intellij IDEA 使用Spring-boot-devTools无效的问题
下面小编就为大家带来一篇解决Intellij IDEA 使用Spring-boot-devTools无效的问题。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧2017-07-07MyEclipse如何将项目的开发环境与服务器的JDK 版本保持一致
我们使用MyEclipse开发Java项目开发中,偶尔会遇到因项目开发环境不协调,导致这样那样的问题,在这里以把所有环境调整为JDK1.6 为例,给大家详细介绍MyEclipse如何将项目的开发环境与服务器的JDK 版本保持一致,需要的朋友参考下吧2024-04-04springboot集成mybatis-maven插件自动生成pojo的详细教程
这篇文章主要介绍了springboot集成mybatis-maven插件自动生成pojo的详细教程,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下2021-01-01
最新评论