你能帮我用我从.properties 文件中获得的列表值参数来编写 spring bean 的正确方法吗?
<bean id="property" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location" value="classpath:dateFormat.properties" />
</bean>
<bean id="directoryMarshallerFolder1" class="threadService.DirectoryMarshalerFolder1">
<constructor-arg>
<list>
...
<value = "${folder1.path}"/> ?????
<value = "${folder2.path}"/>
...
</list>
</constructor-arg>
</bean>