本文介绍了你可以将@Autowired与静态字段一起使用吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有没有办法在静态字段中使用 @Autowired
。如果没有,是否有其他方法可以做到这一点?
Is there some way to use @Autowired
with static fields. If not, are there some other ways to do this?
推荐答案
简而言之,没有。您无法在Spring中自动装配或手动连接静态字段。你必须编写自己的逻辑才能做到这一点。
In short, no. You cannot autowire or manually wire static fields in Spring. You'll have to write your own logic to do this.
这篇关于你可以将@Autowired与静态字段一起使用吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!