Suppose a project uses Spring and defines it's beans within XMLs ? And it has some bean that accepts a Map in constructor.
Usually, this map is defined as a property under the bean, and has, under it, entries.
But what if the entry list is huge ? It will bloat the XML big time...
Can it (the map) somehow be defined in it's on XML file and then refferenced by the bean that needs it ? How ?