Can you use @Autowired with static fields?

后端 未结 11 1570
臣服心动
臣服心动 2020-11-22 13:15

Is there some way to use @Autowired with static fields. If not, are there some other ways to do this?

11条回答
  •  暖寄归人
    2020-11-22 13:43

    @Autowired can be used with setters so you could have a setter modifying an static field.

    Just one final suggestion... DON'T

提交回复
热议问题