集册 Java 面试笔记 如何注入 Java Collection?

如何注入 Java Collection?

—— How can you inject Java Collection in Spring?

欢马劈雪     最近更新时间:2020-08-04 05:37:59

117

<list>: injecting a list of values, 允许重复.

<set>: This helps in wiring a set of values 不允许重复.

<map>: name-value pairs where name and value can be of any type.

<props>:name-value pairs where the name and value are both Strings.