spring @Autowired注入map
Posted zhjh256
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring @Autowired注入map相关的知识,希望对你有一定的参考价值。
注入map,平常一般不会这么做,今天看一段老代码时发现有这么个用法。补习一下。
@Autowired 标注作用于 Map 类型时,如果 Map 的 key 为 String 类型,则 Spring 会将容器中所有类型符合 Map 的 value 对应的类型的 Bean 增加进来,用 Bean 的 id 或 name 作为 Map 的 key。
以上是关于spring @Autowired注入map的主要内容,如果未能解决你的问题,请参考以下文章
为什么不直接@Autowired注入交由spring容器管理的Bean,而是选择构造注入?
Spring不能直接@autowired注入Static变量问题和解决方案