मैं इस प्रकार एक सूची है:एक कंस्ट्रक्टर के साथ एक वसंत बीन कैसे लिखना है जिसमें एक सूची है?
ArrayList<DiameterMessageHandler> handlers = new ArrayList<>();
handlers.add(new AARHandler());
handlers.add(new CERHandler());
handlers.add(new PPAHandler());
handlers.add(new STRHandler());
handlers.add(new DWRHandler());
मैं सोच रहा हूँ एक वसंत सेम कि अपने तर्कों में से एक के रूप में संचालकों लेता है कैसे बनाना है, यानी यह applicationContext.xml में ऐसा करना संभव है - मैं है सूची के लिए अलग सेम बनाने के लिए और प्रत्येक हैंडलर (AARHandler आदि) पहले बनाने के लिए? यहाँ मेरी applicationContext.xml
<bean id="DiameterClient" class="com.rory.ptspsim.diameterclient.DiameterClient" scope="singleton" init-method="start">
<constructor-arg type="java.lang.String" index="0"><value>${pcca.host}</value></constructor-arg>
<constructor-arg index="1">WHAT GOES HERE?</constructor-arg>
</bean>
यह पहले पांच का सबसे अच्छा जवाब है। :-) –