What is the best way to wire a list of beans in spring xml, the catch is that each bean's data must be defined in the xml file (this is because during this sprint they will come from xml, next sprint from db, so its not worth it to put too much time into creation).
this is what i have, but there must be a better way:
<bean id="annouce1" class="com.company.domain.Announcement">
<property name="body" value="bodyasfsdf"/>
<property name="title" value="title"/>
<property name="linkText" value=">>"/>
<property name="linkUrl" value="http://google.com"/>
</bean>
<bean id="annouce2" class="com.company.domain.Announcement">
<property name="body" value="bodyasfsdf"/>
<property name="title" value="title"/>
<property name="linkText" value=">>"/>
<property name="linkUrl" value="http://google.com"/>
</bean>
<bean id="annouce3" class="com.company.domain.Announcement">
<property name="body" value="bodyasfsdf"/>
<property name="title" value="title"/>
<property name="linkText" value=">>"/>
<property name="linkUrl" value="http://google.com"/>
</bean>
<bean id="annouce4" class="com.company.domain.Announcement">
<property name="body" value="bodyasfsdf"/>
<property name="title" value="title"/>
<property name="linkText" value=">>"/>
<property name="linkUrl" value="http://google.com"/>
</bean>
<util:list id="homepageAnnoucements" scope="singleton">
<ref bean="annouce1"/>
<ref bean="annouce2"/>
<ref bean="annouce3"/>
<ref bean="annouce4"/>
</util:list>