Issue
Is there some way to use @Autowired
with static fields. If not, are there some other ways to do this?
Solution
In short, no. You cannot autowire or manually wire static fields in Spring. You'll have to write your own logic to do this.
Answered By - skaffman
Answer Checked By - Clifford M. (JavaFixing Volunteer)